forked from mirrors/nixpkgs
Merge pull request #5012 from jyp/hask-pkgs
Add haskell package: parsek
This commit is contained in:
commit
ef19a9a6e9
|
@ -84,6 +84,7 @@
|
||||||
joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
|
joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
|
||||||
joamaki = "Jussi Maki <joamaki@gmail.com>";
|
joamaki = "Jussi Maki <joamaki@gmail.com>";
|
||||||
joelteon = "Joel Taylor <me@joelt.io>";
|
joelteon = "Joel Taylor <me@joelt.io>";
|
||||||
|
jpbernardy = "Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>";
|
||||||
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
||||||
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
||||||
koral = "Koral <koral@mailoo.org>";
|
koral = "Koral <koral@mailoo.org>";
|
||||||
|
|
|
@ -10,5 +10,6 @@ cabal.mkDerivation (self: {
|
||||||
description = "Labeled tree structure";
|
description = "Labeled tree structure";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = with self.stdenv.lib.maintainers; [ jpbernardy ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
15
pkgs/development/libraries/haskell/parsek/default.nix
Normal file
15
pkgs/development/libraries/haskell/parsek/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||||
|
|
||||||
|
{ cabal }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "parsek";
|
||||||
|
version = "1.0.1.2";
|
||||||
|
sha256 = "0ybh76cx5y73ywhlv4g2z74x1mvg5n2rxl045mscs6dwcyw9vhbd";
|
||||||
|
meta = {
|
||||||
|
description = "Parallel Parsing Processes";
|
||||||
|
license = self.stdenv.lib.licenses.gpl3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
maintainers = with self.stdenv.lib.maintainers; [ jpbernardy ];
|
||||||
|
};
|
||||||
|
})
|
|
@ -1836,6 +1836,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||||
|
|
||||||
parsec = callPackage ../development/libraries/haskell/parsec {};
|
parsec = callPackage ../development/libraries/haskell/parsec {};
|
||||||
|
|
||||||
|
parsek = callPackage ../development/libraries/haskell/parsek {};
|
||||||
|
|
||||||
parsers = callPackage ../development/libraries/haskell/parsers {};
|
parsers = callPackage ../development/libraries/haskell/parsers {};
|
||||||
|
|
||||||
parsimony = callPackage ../development/libraries/haskell/parsimony {};
|
parsimony = callPackage ../development/libraries/haskell/parsimony {};
|
||||||
|
|
Loading…
Reference in a new issue