nixpkgs/pkgs/development/libraries/haskell/uulib/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

15 lines
417 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "uulib";
version = "0.9.15";
sha256 = "0433shh493c04qmi0sd9mfzpy198zi11gxdmcs6nz2gcnxm812zm";
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Haskell Utrecht Tools Library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})