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