nixpkgs/pkgs/development/tools/haskell/uuagc/cabal.nix
Peter Simons e0b8620b50 haskell-uuagc-cabal: updated to version 1.0.0.6
svn path=/nixpkgs/trunk/; revision=29111
2011-09-08 17:25:15 +00:00

19 lines
556 B
Nix

{ cabal, mtl, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc-cabal";
version = "1.0.0.6";
sha256 = "1ij84n2pjhqyz10vsa9qxk4k227wg1c96rq5sylvcwdkzciww81d";
buildDepends = [ mtl uulib ];
meta = {
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
description = "Cabal plugin for the Universiteit Utrecht Attribute Grammar System";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})