3
0
Fork 0
forked from mirrors/nixpkgs

haskell-options: add version 1.0

This commit is contained in:
Peter Simons 2014-03-15 09:25:26 +01:00
parent f5e1190036
commit 84872fe15d
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ cabal, chell, chellQuickcheck, monadsTf, transformers }:
cabal.mkDerivation (self: {
pname = "options";
version = "1.0";
sha256 = "0d40d6k1c8v2b0bgchgl54sk9wx28kysp8bjws8bwjcmmd57775f";
buildDepends = [ monadsTf transformers ];
testDepends = [ chell chellQuickcheck monadsTf transformers ];
meta = {
homepage = "https://john-millikin.com/software/haskell-options/";
description = "A powerful and easy-to-use command-line option parser";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1863,6 +1863,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
operational = callPackage ../development/libraries/haskell/operational {};
options = callPackage ../development/libraries/haskell/options {};
optparseApplicative = callPackage ../development/libraries/haskell/optparse-applicative {};
pathPieces = callPackage ../development/libraries/haskell/path-pieces {};