nixpkgs/pkgs/tools/archivers/cpio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
897 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
# for passthru.tests
, git
, libguestfs
, nixosTests
, rpm
}:
2021-09-25 16:40:56 +00:00
stdenv.mkDerivation rec {
pname = "cpio";
version = "2.14";
2013-03-20 22:01:36 +00:00
src = fetchurl {
2021-09-25 16:40:56 +00:00
url = "mirror://gnu/cpio/cpio-${version}.tar.bz2";
sha256 = "/NwV1g9yZ6b8fvzWudt7bIlmxPL7u5ZMJNQTNv0/LBI=";
};
2021-12-01 23:46:27 +00:00
separateDebugInfo = true;
2021-09-25 16:40:56 +00:00
preConfigure = lib.optionalString stdenv.isCygwin ''
2014-10-23 18:10:12 +00:00
sed -i gnu/fpending.h -e 's,include <stdio_ext.h>,,'
2021-09-25 16:40:56 +00:00
'';
2014-10-23 18:10:12 +00:00
enableParallelBuilding = true;
passthru.tests = {
inherit libguestfs rpm;
git = git.tests.withInstallCheck;
initrd = nixosTests.systemd-initrd-simple;
};
meta = with lib; {
homepage = "https://www.gnu.org/software/cpio/";
description = "A program to create or extract from cpio archives";
2018-08-15 18:20:08 +00:00
license = licenses.gpl3;
platforms = platforms.all;
priority = 6; # resolves collision with gnutar's "libexec/rmt"
};
}