haskell-uuagc: updated to version 0.9.39.0
svn path=/nixpkgs/trunk/; revision=28514
This commit is contained in:
parent
0891479ca6
commit
0ae69dbfbe
20
pkgs/development/tools/haskell/uuagc/bootstrap.nix
Normal file
20
pkgs/development/tools/haskell/uuagc/bootstrap.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ cabal, haskellSrcExts, mtl, uulib }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "uuagc-bootstrap";
|
||||||
|
version = "0.9.39.0.0";
|
||||||
|
sha256 = "1ds98nif6naafgf6vgf19nmwx5gbhz88gsh2zyxc4d4iqb0z5drv";
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
buildDepends = [ haskellSrcExts mtl uulib ];
|
||||||
|
meta = {
|
||||||
|
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
|
||||||
|
description = "Attribute Grammar System of Universiteit Utrecht";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = [
|
||||||
|
self.stdenv.lib.maintainers.andres
|
||||||
|
self.stdenv.lib.maintainers.simons
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
17
pkgs/development/tools/haskell/uuagc/cabal.nix
Normal file
17
pkgs/development/tools/haskell/uuagc/cabal.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ cabal, mtl, uulib }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "uuagc-cabal";
|
||||||
|
version = "1.0.0.2";
|
||||||
|
sha256 = "0j5f30xx3z9fqcn4y2hhssbc9h0dycadk552d3a7i9rq7gsy59br";
|
||||||
|
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;
|
||||||
|
maintainers = [
|
||||||
|
self.stdenv.lib.maintainers.andres
|
||||||
|
self.stdenv.lib.maintainers.simons
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
@ -1,16 +1,18 @@
|
|||||||
{ cabal, haskellSrcExts, mtl, uulib }:
|
{ cabal, haskellSrcExts, mtl, uuagcBootstrap, uuagcCabal, uulib }:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "uuagc";
|
pname = "uuagc";
|
||||||
version = "0.9.38.6";
|
version = "0.9.39.0";
|
||||||
sha256 = "1dr8vxis16rcdvklp0rv2d50bi33jag7n4wynbfqw9bzgyfbagnw";
|
sha256 = "1jx1cisch97dd2dy2ddlx7s8zxrrv1wwp9pm2bl59sjakpp1kqwh";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [ haskellSrcExts mtl uulib ];
|
buildDepends = [
|
||||||
|
haskellSrcExts mtl uuagcBootstrap uuagcCabal uulib
|
||||||
|
];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
|
homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
|
||||||
description = "Attribute Grammar System of Universiteit Utrecht";
|
description = "Attribute Grammar System of Universiteit Utrecht";
|
||||||
license = "GPL";
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
maintainers = [
|
maintainers = [
|
||||||
self.stdenv.lib.maintainers.andres
|
self.stdenv.lib.maintainers.andres
|
||||||
|
@ -1390,6 +1390,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||||||
|
|
||||||
threadscope = callPackage ../development/tools/haskell/threadscope {};
|
threadscope = callPackage ../development/tools/haskell/threadscope {};
|
||||||
|
|
||||||
|
uuagcBootstrap = callPackage ../development/tools/haskell/uuagc/bootstrap.nix {};
|
||||||
|
uuagcCabal = callPackage ../development/tools/haskell/uuagc/cabal.nix {};
|
||||||
uuagc = callPackage ../development/tools/haskell/uuagc {};
|
uuagc = callPackage ../development/tools/haskell/uuagc {};
|
||||||
|
|
||||||
# Applications.
|
# Applications.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user