39 lines
889 B
Nix
39 lines
889 B
Nix
|
|
{
|
||
|
|
mkDerivation,
|
||
|
|
base,
|
||
|
|
fetchgit,
|
||
|
|
lib,
|
||
|
|
prettyprinter,
|
||
|
|
prettyprinter-ansi-terminal,
|
||
|
|
process,
|
||
|
|
QuickCheck,
|
||
|
|
text,
|
||
|
|
transformers,
|
||
|
|
}:
|
||
|
|
mkDerivation {
|
||
|
|
pname = "hercules-ci-optparse-applicative";
|
||
|
|
version = "0.19.0.0";
|
||
|
|
src = fetchgit {
|
||
|
|
url = "https://github.com/hercules-ci/optparse-applicative.git";
|
||
|
|
sha256 = "068rsq9j0afrywbcqf6vg4ivfxbb68ab7f0lvg1na81mfn7sfakk";
|
||
|
|
rev = "b55bb38a2aea0cf776aec707cdce7c7418146077";
|
||
|
|
fetchSubmodules = true;
|
||
|
|
};
|
||
|
|
libraryHaskellDepends = [
|
||
|
|
base
|
||
|
|
prettyprinter
|
||
|
|
prettyprinter-ansi-terminal
|
||
|
|
process
|
||
|
|
text
|
||
|
|
transformers
|
||
|
|
];
|
||
|
|
testHaskellDepends = [
|
||
|
|
base
|
||
|
|
QuickCheck
|
||
|
|
];
|
||
|
|
homepage = "https://github.com/hercules-ci/optparse-applicative";
|
||
|
|
description = "Utilities and combinators for parsing command line options (fork)";
|
||
|
|
license = lib.licenses.bsd3;
|
||
|
|
maintainers = [ lib.maintainers.roberth ];
|
||
|
|
}
|