0812835108
svn path=/nixpkgs/trunk/; revision=30228
19 lines
556 B
Nix
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
|
|
];
|
|
};
|
|
})
|