about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/binutils/default.nix
blob: 07d6b416a54a72202c5a4cd83d935be4a256df31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{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;
}