9f898a586b
can't assume that it will live forever). svn path=/nixpkgs/trunk/; revision=4624
13 lines
279 B
Nix
13 lines
279 B
Nix
{stdenv, fetchurl, ghc}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "uulib-0.9.2";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/uulib-0.9.2-src.tar.gz;
|
|
md5 = "0cc9acc6a268e2bc5c8a954e67406e2d";
|
|
};
|
|
builder = ./builder.sh;
|
|
#buildInputs = [ ghc ];
|
|
inherit ghc;
|
|
}
|