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

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

47 lines
988 B
Nix
Raw Permalink Normal View History

{ lib
, stdenv
, fetchurl
, autoreconfHook
# for passthru.tests
, git
, libguestfs
, nixosTests
, rpm
}:
2021-09-25 16:40:56 +00:00
stdenv.mkDerivation rec {
pname = "cpio";
version = "2.15";
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";
hash = "sha256-k3YQuXwymh7JJoVT+3gAN7z/8Nz/6XJevE/ZwaqQdds=";
};
nativeBuildInputs = [ autoreconfHook ];
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"
2023-11-27 01:17:53 +00:00
mainProgram = "cpio";
};
}