nixpkgs/pkgs/development/tools/haskell/uuagc/cabal.nix
Peter Simons 0812835108 haskell-uuagc-cabal: updated to version 1.0.0.9
svn path=/nixpkgs/trunk/; revision=30228
2011-11-04 16:57:39 +00:00

19 lines
556 B
Nix

{ cabal, mtl, uulib }:
cabal.mkDerivation (self: {
pname = "uuagc-cabal";
version = "1.0.0.9";
sha256 = "1iifzy58w50162bwj20xmldsyq0xaq0g849zgwxai26881a1jlfg";
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
];
};
})