nixpkgs/pkgs/tools/package-management/cargo-deb/default.nix

38 lines
897 B
Nix
Raw Normal View History

2020-01-09 14:30:54 +01:00
{ stdenv
, lib
, fetchFromGitHub
, rustPlatform
2020-05-13 01:38:15 +02:00
, rust
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-deb";
2020-04-30 11:54:27 +02:00
version = "1.24.0";
src = fetchFromGitHub {
owner = "mmstick";
2020-01-09 14:30:54 +01:00
repo = pname;
2020-04-30 11:54:27 +02:00
rev = "b49351f6770aa7aeb053dd1d4a02d6b086caad2a";
sha256 = "1hs96yv0awgi7ggpxp7k3n21jpv642sm0529b21hs9ib6kp4vs8s";
};
2020-01-09 14:30:54 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
2020-04-30 11:54:27 +02:00
cargoSha256 = "1vqnnqn6rzkdi239bh3lk7gaxr7w6v3c4ws4ya1ah04g6v9hkzlw";
2020-05-13 01:38:15 +02:00
checkType = "debug";
preCheck = ''
substituteInPlace tests/command.rs \
--replace 'target/debug' "target/${rust.toRustTarget stdenv.buildPlatform}/debug"
'';
2020-01-09 14:30:54 +01:00
meta = with lib; {
description = "Generate Debian packages from information in Cargo.toml";
homepage = "https://github.com/mmstick/cargo-deb";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
};
}