mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
haskell-chell: add version 0.3.3
This commit is contained in:
parent
062363c001
commit
d03aa6a13f
18
pkgs/development/libraries/haskell/chell/default.nix
Normal file
18
pkgs/development/libraries/haskell/chell/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ cabal, ansiTerminal, options, patience, random, text
|
||||
, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "chell";
|
||||
version = "0.3.3";
|
||||
sha256 = "1k5vxipf47753d41dgr1gr4zy7y72gz2x8lcn0fgfmxi2v810nsm";
|
||||
buildDepends = [
|
||||
ansiTerminal options patience random text transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://john-millikin.com/software/chell/";
|
||||
description = "A simple and intuitive library for automated testing";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -758,6 +758,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
checkers = callPackage ../development/libraries/haskell/checkers {};
|
||||
|
||||
chell = callPackage ../development/libraries/haskell/chell {};
|
||||
|
||||
chunkedData = callPackage ../development/libraries/haskell/chunked-data {};
|
||||
|
||||
citeprocHs = callPackage ../development/libraries/haskell/citeproc-hs {};
|
||||
|
Loading…
Reference in New Issue
Block a user