happy: add version 1.19.3

This commit is contained in:
Peter Simons 2014-01-20 11:58:44 +01:00
parent 2991fdca52
commit f0740ac2bc
2 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,18 @@
{ cabal, mtl, perl }:
cabal.mkDerivation (self: {
pname = "happy";
version = "1.19.3";
sha256 = "1q3hipgcwvrf333wlyqmg4mgf24gwiagddlfyr9zgi4k42p2373x";
isLibrary = false;
isExecutable = true;
buildDepends = [ mtl ];
buildTools = [ perl ];
meta = {
homepage = "http://www.haskell.org/happy/";
description = "Happy is a parser generator for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

View file

@ -176,7 +176,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
cabalInstall = self.cabalInstall_1_18_0_2;
alex = self.alex_3_1_3;
haddock = self.haddock_2_13_2_1;
happy = self.happy_1_19_2;
happy = self.happy_1_19_3;
primitive = self.primitive_0_5_1_0; # semi-official, but specified
};
@ -2632,7 +2632,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
happy_1_18_10 = callPackage ../development/tools/parsing/happy/1.18.10.nix {};
happy_1_18_11 = callPackage ../development/tools/parsing/happy/1.18.11.nix {};
happy_1_19_2 = callPackage ../development/tools/parsing/happy/1.19.2.nix {};
happy = self.happy_1_19_2;
happy_1_19_3 = callPackage ../development/tools/parsing/happy/1.19.3.nix {};
happy = self.happy_1_19_3;
happyMeta = callPackage ../development/tools/haskell/happy-meta {};