nixpkgs/pkgs/development/libraries/haskell/uulib/default.nix
Christof Douma 8d4e61d096 change uulib to store all dependencies to package.conf
added ghc-wrapper to use a generated global package.conf
added uuagc

svn path=/nixpkgs/trunk/; revision=4608
2006-01-27 10:16:15 +00:00

13 lines
299 B
Nix

{stdenv, fetchurl, ghc}:
stdenv.mkDerivation {
name = "uulib-0.9.2";
src = fetchurl {
url = http://abaris.zoo.cs.uu.nl:8080/wiki/pub/HUT/Download/uulib-0.9.2-src.tar.gz;
md5 = "0cc9acc6a268e2bc5c8a954e67406e2d";
};
builder = ./builder.sh;
#buildInputs = [ ghc ];
inherit ghc;
}