Add wl-pprint-1.1, wl-pprint-extras-3.3, and wl-pprint-terminfo-3.4.
This commit is contained in:
parent
2fca1deeb2
commit
58428ff4ff
@ -0,0 +1,14 @@
|
||||
{ cabal, nats, semigroupoids, semigroups, utf8String }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "wl-pprint-extras";
|
||||
version = "3.3";
|
||||
sha256 = "1q3wiw62k53yl9ny9l54b281zprrnshw94pd52rlcxbw9cgj8xzx";
|
||||
buildDepends = [ nats semigroupoids semigroups utf8String ];
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/wl-pprint-extras/";
|
||||
description = "A free monad based on the Wadler/Leijen pretty printer";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -0,0 +1,17 @@
|
||||
{ cabal, nats, semigroups, terminfo, transformers, wlPprintExtras
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "wl-pprint-terminfo";
|
||||
version = "3.4";
|
||||
sha256 = "1wnlm74fwcn171a533bv15bvlhabrzh192wabala0wyvwgl8hwzk";
|
||||
buildDepends = [
|
||||
nats semigroups terminfo transformers wlPprintExtras
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/wl-pprint-terminfo/";
|
||||
description = "A color pretty printer with terminfo support";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
12
pkgs/development/libraries/haskell/wl-pprint/default.nix
Normal file
12
pkgs/development/libraries/haskell/wl-pprint/default.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "wl-pprint";
|
||||
version = "1.1";
|
||||
sha256 = "16kp3fkh0x9kgzk6fdqrm8m0v7b5cgbv0m3x63ybbp5vxbhand06";
|
||||
meta = {
|
||||
description = "The Wadler/Leijen Pretty Printer";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1865,6 +1865,12 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
CouchDB = callPackage ../development/libraries/haskell/CouchDB {};
|
||||
|
||||
wlPprint = callPackage ../development/libraries/haskell/wl-pprint {};
|
||||
|
||||
wlPprintExtras = callPackage ../development/libraries/haskell/wl-pprint-extras {};
|
||||
|
||||
wlPprintTerminfo = callPackage ../development/libraries/haskell/wl-pprint-terminfo {};
|
||||
|
||||
wlPprintText = callPackage ../development/libraries/haskell/wl-pprint-text {};
|
||||
|
||||
word8 = callPackage ../development/libraries/haskell/word8 {};
|
||||
|
Loading…
Reference in New Issue
Block a user