haskell-boxes: new expression

This commit is contained in:
John Wiegley 2014-06-16 14:01:17 -07:00
parent 20f31b66a2
commit 39dfef4af0
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{ cabal, split }:
cabal.mkDerivation (self: {
pname = "boxes";
version = "0.1.3";
sha256 = "1sia3j0x7m68j6j9n7bi1l1yg56ivpkxd95l19xl5vpkg03qizkq";
buildDepends = [ split ];
meta = {
description = "2D text pretty-printing library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -288,6 +288,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
BoundedChan = callPackage ../development/libraries/haskell/BoundedChan {};
boxes = callPackage ../development/libraries/haskell/boxes {};
brainfuck = callPackage ../development/libraries/haskell/brainfuck {};
bson = callPackage ../development/libraries/haskell/bson {};