mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
12 lines
317 B
Plaintext
12 lines
317 B
Plaintext
|
{stdenv, fetchurl}: 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"
|
||
|
}
|
||
|
, stdenv = stdenv
|
||
|
, noSysDirs = stdenv.noSysDirs
|
||
|
}
|