summary refs log tree commit diff
path: root/pkgs/development/tools/misc/binutils/binutils-2.17.nix
blob: 7cd4b1444a614db298285997b5d41df013255a9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, noSysDirs}:

stdenv.mkDerivation {
  name = "binutils-2.17";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/binutils-2.17.tar.bz2;
    md5 = "e26e2e06b6e4bf3acf1dc8688a94c0d1";
  };
  inherit noSysDirs;
}