nixpkgs/pkgs/development/tools/rust/cargo-geiger/default.nix

43 lines
1.3 KiB
Nix
Raw Normal View History

2019-11-02 22:27:34 +00:00
{ stdenv, lib, fetchFromGitHub
2019-11-06 19:23:32 +00:00
, rustPlatform, pkgconfig, openssl
# testing packages
, cargo-insta
2019-11-06 19:23:32 +00:00
# darwin dependencies
, Security, CoreFoundation, libiconv
}:
2019-11-02 22:27:34 +00:00
rustPlatform.buildRustPackage rec {
pname = "cargo-geiger";
version = "0.10.2";
2019-11-02 22:27:34 +00:00
src = fetchFromGitHub {
owner = "rust-secure-code";
2019-11-02 22:27:34 +00:00
repo = pname;
rev = "${pname}-${version}";
sha256 = "1z920p8i3gkjadyd6bqjk4i5yr5ds3m3sbcnf7plcqr69dsjr4b8";
2019-11-02 22:27:34 +00:00
};
cargoSha256 = "1zh6fjfynkn4kgk1chigzd0sh4x1bagizyn7x6qyxgzc57a49bp7";
2019-11-02 22:27:34 +00:00
checkPhase = ''
${cargo-insta}/bin/cargo-insta test
'';
2019-11-06 19:23:32 +00:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security libiconv ];
2019-11-02 22:27:34 +00:00
nativeBuildInputs = [ pkgconfig ];
2019-11-06 19:23:32 +00:00
# FIXME: Use impure version of CoreFoundation because of missing symbols.
# CFURLSetResourcePropertyForKey is defined in the headers but there's no
# corresponding implementation in the sources from opensource.apple.com.
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
export NIX_CFLAGS_COMPILE="-F${CoreFoundation}/Library/Frameworks $NIX_CFLAGS_COMPILE"
'';
2019-11-02 22:27:34 +00:00
meta = with lib; {
description = "Detects usage of unsafe Rust in a Rust crate and its dependencies";
homepage = "https://github.com/rust-secure-code/cargo-geiger";
2019-11-02 22:27:34 +00:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ evanjs ];
};
}