2014-12-10 18:20:28 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2005-08-30 13:56:15 +00:00
|
|
|
|
2015-09-18 04:04:49 +00:00
|
|
|
let
|
|
|
|
version = "2.12";
|
|
|
|
name = "cpio-${version}";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2013-03-20 22:01:36 +00:00
|
|
|
|
2005-08-30 13:56:15 +00:00
|
|
|
src = fetchurl {
|
2015-09-18 04:04:49 +00:00
|
|
|
url = "mirror://gnu/cpio/${name}.tar.bz2";
|
|
|
|
sha256 = "0vi9q475h1rki53100zml75vxsykzyhrn70hidy41s5c2rc8r6bh";
|
2005-08-30 13:56:15 +00:00
|
|
|
};
|
2009-02-12 19:04:44 +00:00
|
|
|
|
2015-09-18 04:04:49 +00:00
|
|
|
patches = [ ./CVE-2015-1197-cpio-2.12.patch ];
|
2015-02-26 20:24:45 +00:00
|
|
|
|
2014-10-23 18:10:12 +00:00
|
|
|
preConfigure = if stdenv.isCygwin then ''
|
|
|
|
sed -i gnu/fpending.h -e 's,include <stdio_ext.h>,,'
|
|
|
|
'' else null;
|
|
|
|
|
2015-09-18 04:04:49 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-02-12 19:04:44 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/cpio/;
|
2010-08-03 10:55:58 +00:00
|
|
|
description = "A program to create or extract from cpio archives";
|
2014-01-28 12:36:35 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-08-24 22:37:54 +00:00
|
|
|
priority = 6; # resolves collision with gnutar's "libexec/rmt"
|
2009-02-12 19:04:44 +00:00
|
|
|
};
|
2005-08-30 13:56:15 +00:00
|
|
|
}
|