mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
a1b3ae0c81
svn path=/nixpkgs/trunk/; revision=826
13 lines
307 B
Nix
13 lines
307 B
Nix
{stdenv, fetchurl, enforcePurity ? true}:
|
|
|
|
derivation {
|
|
name = "binutils-2.14";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.nluug.nl/pub/gnu/binutils/binutils-2.14.tar.bz2;
|
|
md5 = "2da8def15d28af3ec6af0982709ae90a";
|
|
};
|
|
inherit stdenv enforcePurity;
|
|
}
|