nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 mkDerivation,
3 base,
4 fetchgit,
5 lib,
6 prettyprinter,
7 prettyprinter-ansi-terminal,
8 process,
9 QuickCheck,
10 text,
11 transformers,
12}:
13mkDerivation {
14 pname = "hercules-ci-optparse-applicative";
15 version = "0.19.0.0";
16 src = fetchgit {
17 url = "https://github.com/hercules-ci/optparse-applicative.git";
18 sha256 = "068rsq9j0afrywbcqf6vg4ivfxbb68ab7f0lvg1na81mfn7sfakk";
19 rev = "b55bb38a2aea0cf776aec707cdce7c7418146077";
20 fetchSubmodules = true;
21 };
22 libraryHaskellDepends = [
23 base
24 prettyprinter
25 prettyprinter-ansi-terminal
26 process
27 text
28 transformers
29 ];
30 testHaskellDepends = [
31 base
32 QuickCheck
33 ];
34 homepage = "https://github.com/hercules-ci/optparse-applicative";
35 description = "Utilities and combinators for parsing command line options (fork)";
36 license = lib.licenses.bsd3;
37 maintainers = [ lib.maintainers.roberth ];
38}