cargo-deb: do not expect glibc dependency to be added

The test was introduced in v1.25.0:

* https://github.com/mmstick/cargo-deb/commit/3597cf28e
This commit is contained in:
Ivan Babrou 2021-02-24 21:13:28 -08:00
parent 0ae422a4f2
commit a422684c87

View file

@ -13,17 +13,21 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "mmstick";
repo = pname;
rev = "86d02f9cacaf4a4f9b576e2dbd9dad65baa61a0d";
rev = "v${version}";
sha256 = "sha256-oWivGy2azF9zpeZ0UAi7Bxm4iXFWAjcBG0pN7qtkSU8=";
};
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
cargoSha256 = "sha256-HgGl1JWNkPEBODzWa6mfXuAtF8jOgT0Obx4mX9nOLkk=";
cargoSha256 = "0j9frvcmy9hydw73v0ffr0bjvq2ykylnpmiw700z344djpaaa08y";
preCheck = ''
substituteInPlace tests/command.rs \
--replace 'target/debug' "target/${rust.toRustTarget stdenv.buildPlatform}/release"
# This is an FHS specific assert depending on glibc location
substituteInPlace src/dependencies.rs \
--replace 'assert!(deps.iter().any(|d| d.starts_with("libc")));' '// no libc assert here'
'';
meta = with lib; {