3
0
Fork 0
forked from mirrors/nixpkgs

optparse-applicative: add version 0.4.1

This commit is contained in:
Paolo Capriotti 2012-11-01 14:07:15 +00:00
parent a4bb7cfc84
commit 54f58e9f2a
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, transformers }:
cabal.mkDerivation (self: {
pname = "optparse-applicative";
version = "0.4.1";
sha256 = "00byv248662n6pr8gn5b777l0fjg6f0wcxfkbhw0qyhd1ciq8d38";
buildDepends = [ transformers ];
meta = {
homepage = "https://github.com/pcapriotti/optparse-applicative";
description = "Utilities and combinators for parsing command line options";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1243,6 +1243,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
OpenGLRaw = callPackage ../development/libraries/haskell/OpenGLRaw {};
optparse_applicative = callPackage ../development/libraries/haskell/optparse-applicative {};
pathPieces = callPackage ../development/libraries/haskell/path-pieces {};
pandoc = callPackage ../development/libraries/haskell/pandoc {};