mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
haskell-cmdtheline: add version 0.2.3
This commit is contained in:
parent
0e8bf4f075
commit
c2c66fcda9
19
pkgs/development/libraries/haskell/cmdtheline/default.nix
Normal file
19
pkgs/development/libraries/haskell/cmdtheline/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ cabal, filepath, HUnit, parsec, testFramework, testFrameworkHunit
|
||||
, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cmdtheline";
|
||||
version = "0.2.3";
|
||||
sha256 = "1jwbr34xgccjbz6nm58bdsg1vqyv87rh45yia5j36vlfbaclyb04";
|
||||
buildDepends = [ filepath parsec transformers ];
|
||||
testDepends = [
|
||||
filepath HUnit parsec testFramework testFrameworkHunit transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/eli-frey/cmdtheline";
|
||||
description = "Declarative command-line option parsing and documentation library";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -719,6 +719,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
cmdlib = callPackage ../development/libraries/haskell/cmdlib {};
|
||||
|
||||
cmdtheline = callPackage ../development/libraries/haskell/cmdtheline {};
|
||||
|
||||
colorizeHaskell = callPackage ../development/libraries/haskell/colorize-haskell {};
|
||||
|
||||
colour = callPackage ../development/libraries/haskell/colour {};
|
||||
|
Loading…
Reference in New Issue
Block a user