2024-01-23 14:26:23 +00:00
|
|
|
{ mkDerivation, base, fetchFromGitHub, lib, prettyprinter
|
|
|
|
, prettyprinter-ansi-terminal, process, QuickCheck, text
|
2021-03-07 12:40:17 +00:00
|
|
|
, transformers, transformers-compat
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "hercules-ci-optparse-applicative";
|
2024-01-23 14:26:23 +00:00
|
|
|
version = "0.18.1.0";
|
2022-03-15 10:17:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hercules-ci";
|
|
|
|
repo = "optparse-applicative";
|
2024-01-23 14:26:23 +00:00
|
|
|
sha256 = "1cgxc80zfgzk4rrhspnlj7790jb0ddq7ybj7qjan5xmjjir90763";
|
|
|
|
rev = "a123939663ba1cd0f1750343f1c6b9864ac21207";
|
2021-03-07 12:40:17 +00:00
|
|
|
};
|
|
|
|
libraryHaskellDepends = [
|
2024-01-23 14:26:23 +00:00
|
|
|
base prettyprinter prettyprinter-ansi-terminal process text
|
|
|
|
transformers transformers-compat
|
2021-03-07 12:40:17 +00:00
|
|
|
];
|
|
|
|
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 = with lib.maintainers; [ roberth ];
|
|
|
|
}
|