mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
optparse-applicative: add version 0.4.1
This commit is contained in:
parent
a4bb7cfc84
commit
54f58e9f2a
2 changed files with 16 additions and 0 deletions
|
@ -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;
|
||||||
|
};
|
||||||
|
})
|
|
@ -1243,6 +1243,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||||
|
|
||||||
OpenGLRaw = callPackage ../development/libraries/haskell/OpenGLRaw {};
|
OpenGLRaw = callPackage ../development/libraries/haskell/OpenGLRaw {};
|
||||||
|
|
||||||
|
optparse_applicative = callPackage ../development/libraries/haskell/optparse-applicative {};
|
||||||
|
|
||||||
pathPieces = callPackage ../development/libraries/haskell/path-pieces {};
|
pathPieces = callPackage ../development/libraries/haskell/path-pieces {};
|
||||||
|
|
||||||
pandoc = callPackage ../development/libraries/haskell/pandoc {};
|
pandoc = callPackage ../development/libraries/haskell/pandoc {};
|
||||||
|
|
Loading…
Reference in a new issue