mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
haskell-parsec: update to version 3.1.4
This commit is contained in:
parent
9a7c392af3
commit
d231aca644
15
pkgs/development/libraries/haskell/parsec/3.1.4.nix
Normal file
15
pkgs/development/libraries/haskell/parsec/3.1.4.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ cabal, mtl, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "parsec";
|
||||
version = "3.1.4";
|
||||
sha256 = "0milmi4q5jdcmmwjqa4lcs1vcw5frkrlrxc8q17lkas3p2m10kh5";
|
||||
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 ];
|
||||
};
|
||||
})
|
@ -158,7 +158,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
OpenGL = self.OpenGL_2_9_1_0;
|
||||
OpenGLRaw = self.OpenGLRaw_1_4_0_0;
|
||||
parallel = self.parallel_3_2_0_4;
|
||||
parsec = self.parsec_3_1_3;
|
||||
parsec = self.parsec_3_1_4;
|
||||
QuickCheck = self.QuickCheck_2_6;
|
||||
random = self.random_1_0_1_1;
|
||||
regexBase = self.regexBase_0_93_2;
|
||||
@ -1701,8 +1701,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
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 {};
|
||||
parsec_3_1_3 = callPackage ../development/libraries/haskell/parsec/3.1.3.nix {};
|
||||
parsec_3_1_4 = callPackage ../development/libraries/haskell/parsec/3.1.4.nix {};
|
||||
parsec2 = self.parsec_2_1_0_1;
|
||||
parsec3 = self.parsec_3_1_3;
|
||||
parsec3 = self.parsec_3_1_4;
|
||||
parsec = self.parsec3;
|
||||
|
||||
parsers_0_9 = callPackage ../development/libraries/haskell/parsers/0.9.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user