Files
nixpkgs/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
889 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
}