mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
haskell-parsec: added version 3.1.2
svn path=/nixpkgs/trunk/; revision=29728
This commit is contained in:
parent
99003e9508
commit
fad97e3885
18
pkgs/development/libraries/haskell/parsec/3.1.2.nix
Normal file
18
pkgs/development/libraries/haskell/parsec/3.1.2.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ cabal, mtl, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "parsec";
|
||||
version = "3.1.2";
|
||||
sha256 = "0lhn9j2j5jlh7g0qx9f6ms63n9x1xlxg9isdvm6z0ksy3ywj9wch";
|
||||
buildDepends = [ mtl text ];
|
||||
meta = {
|
||||
homepage = "http://www.cs.uu.nl/~daan/parsec.html";
|
||||
description = "Monadic parser combinators";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
@ -927,8 +927,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
parsec_2_1_0_1 = callPackage ../development/libraries/haskell/parsec/2.1.0.1.nix {};
|
||||
parsec_3_1_1 = callPackage ../development/libraries/haskell/parsec/3.1.1.nix {};
|
||||
parsec_3_1_2 = callPackage ../development/libraries/haskell/parsec/3.1.2.nix {};
|
||||
parsec2 = self.parsec_2_1_0_1;
|
||||
parsec3 = self.parsec_3_1_1;
|
||||
parsec3 = self.parsec_3_1_2;
|
||||
parsec = self.parsec2;
|
||||
|
||||
parsimony = callPackage ../development/libraries/haskell/parsimony {};
|
||||
|
Loading…
Reference in New Issue
Block a user