2005-08-30 13:56:15 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2010-08-03 10:55:58 +00:00
|
|
|
stdenv.mkDerivation {
|
2013-02-26 09:08:00 +00:00
|
|
|
name = "cpio-2.11";
|
2013-03-20 22:01:36 +00:00
|
|
|
|
2005-08-30 13:56:15 +00:00
|
|
|
src = fetchurl {
|
2013-02-20 09:20:07 +00:00
|
|
|
url = mirror://gnu/cpio/cpio-2.11.tar.bz2;
|
|
|
|
sha256 = "bb820bfd96e74fc6ce43104f06fe733178517e7f5d1cdee553773e8eff7d5bbd";
|
2005-08-30 13:56:15 +00:00
|
|
|
};
|
2009-02-12 19:04:44 +00:00
|
|
|
|
2014-01-28 12:36:35 +00:00
|
|
|
patches = [ ./no-gets.patch ] ++ stdenv.lib.optional stdenv.isDarwin ./darwin-fix.patch;
|
2013-03-20 22:01:36 +00:00
|
|
|
|
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;
|
2009-02-12 19:04:44 +00:00
|
|
|
};
|
2005-08-30 13:56:15 +00:00
|
|
|
}
|