mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
haskell-boxes: new expression
This commit is contained in:
parent
20f31b66a2
commit
39dfef4af0
13
pkgs/development/libraries/haskell/boxes/default.nix
Normal file
13
pkgs/development/libraries/haskell/boxes/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user