summary refs log tree commit diff
path: root/pkgs/development/libraries/attr/default.nix
blob: 79da04d486ad791dda70e462caa01cef78eb4383 (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 = ftp://oss.sgi.com/projects/xfs/download/download/cmd_tars/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];
}