Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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 ];
|
|
}
|