summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/optparse-applicative/default.nix
blob: 46f530b8cd4f5e7c5246627b6c853fd54b33318e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, HUnit, testFramework, testFrameworkHunit
, testFrameworkThPrime, transformers
}:

cabal.mkDerivation (self: {
  pname = "optparse-applicative";
  version = "0.5.2.1";
  sha256 = "0w4mk851mx8dch8lnck0g82asmzrsc47xrf34jygh0f6v4kbj40i";
  buildDepends = [ transformers ];
  testDepends = [
    HUnit testFramework testFrameworkHunit testFrameworkThPrime
  ];
  meta = {
    homepage = "https://github.com/pcapriotti/optparse-applicative";
    description = "Utilities and combinators for parsing command line options";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})