61 lines
1.7 KiB
Nix
61 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
dpkg,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-deb";
|
|
version = "3.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kornelski";
|
|
repo = "cargo-deb";
|
|
rev = "v${version}";
|
|
hash = "sha256-aDTkH2V6VrrYLZMlQyd9YOfae92zO4gIb4sKtU66ENM=";
|
|
};
|
|
|
|
cargoHash = "sha256-FAtwTHHAu9CDUyeI2sv7EWW3Jhh1ZSHuKLyBatfVcP8=";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
checkFlags = [
|
|
# This is an FHS specific assert depending on glibc location
|
|
"--skip=dependencies::resolve_test"
|
|
"--skip=run_cargo_deb_command_on_example_dir_with_separate_debug_symbols"
|
|
# The following tests require empty CARGO_BUILD_TARGET env variable, but we
|
|
# set it ever since https://github.com/NixOS/nixpkgs/pull/298108.
|
|
"--skip=build_with_command_line_compress_gz"
|
|
"--skip=build_with_command_line_compress_xz"
|
|
"--skip=build_with_explicit_compress_type_gz"
|
|
"--skip=build_with_explicit_compress_type_xz"
|
|
"--skip=build_workspaces"
|
|
"--skip=cwd_dir1"
|
|
"--skip=cwd_dir2"
|
|
"--skip=cwd_dir3"
|
|
"--skip=run_cargo_deb_command_on_example_dir"
|
|
"--skip=run_cargo_deb_command_on_example_dir_with_variant"
|
|
"--skip=run_cargo_deb_command_on_example_dir_with_version"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cargo-deb \
|
|
--prefix PATH : ${lib.makeBinPath [ dpkg ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cargo subcommand that generates Debian packages from information in Cargo.toml";
|
|
mainProgram = "cargo-deb";
|
|
homepage = "https://github.com/kornelski/cargo-deb";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
Br1ght0ne
|
|
matthiasbeyer
|
|
];
|
|
};
|
|
}
|