about summary refs log tree commit diff
path: root/pkgs/development/libraries/attr/default.nix
blob: 69a097b0c8bcb1b53fb3c00c05d88b42567471b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, autoconf, libtool, gettext}:

stdenv.mkDerivation {
  name = "attr-2.4.32";

  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/attr_2.4.32-1.tar.gz;
    md5 = "092739e9b944815aecc1f5d8379d5ea5";
  };

  buildInputs = [autoconf libtool gettext];
  patches = [./attr-2.4.32.patch ./attr-2.4.32-makefile.patch];
}