about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix
blob: 7b7e64f7650bb4df6071562b6e81dfd9cf37f65d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, base, fetchFromGitHub, lib, prettyprinter
, prettyprinter-ansi-terminal, process, QuickCheck, text
, transformers, transformers-compat
}:
mkDerivation {
  pname = "hercules-ci-optparse-applicative";
  version = "0.18.1.0";
  src = fetchFromGitHub {
    owner = "hercules-ci";
    repo = "optparse-applicative";
    sha256 = "1cgxc80zfgzk4rrhspnlj7790jb0ddq7ybj7qjan5xmjjir90763";
    rev = "a123939663ba1cd0f1750343f1c6b9864ac21207";
  };
  libraryHaskellDepends = [
    base prettyprinter prettyprinter-ansi-terminal process text
    transformers transformers-compat
  ];
  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 ];
}