mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
* cpio: apply a patch from Gentoo to make it build on GCC 4.3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14046
This commit is contained in:
parent
8e6f58086d
commit
7bf6d9cbdf
@ -2,8 +2,22 @@
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "cpio-2.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnu/cpio/cpio-2.9.tar.bz2;
|
||||
sha256 = "01s7f9hg8kgpis96j99hgkiqgdy53pm7qi7bhm3fzx58jfk5z6mv";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Make it compile on GCC 4.3.
|
||||
(fetchurl {
|
||||
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/app-arch/cpio/files/cpio-2.9-gnu-inline.patch?rev=1.1";
|
||||
sha256 = "1167hrq64h9lh3qhgasm2rivfzkkgx6fik92b017qfa0q61ff8c3";
|
||||
})
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/cpio/;
|
||||
description = "A program to create or extract from cpio archives";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user