2018-11-09 17:16:58 +01:00
|
|
|
{ mkDerivation, base, bytestring, Only, optparse-applicative
|
|
|
|
, semigroups, stdenv, system-filepath, text, time, transformers
|
|
|
|
, void
|
2017-08-19 16:16:10 +02:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "optparse-generic";
|
2018-11-09 17:16:58 +01:00
|
|
|
version = "1.3.0";
|
|
|
|
sha256 = "80929958606e4a73672b570ba1a23493fbf46268666d14ab5af53623301c398f";
|
2017-08-19 16:16:10 +02:00
|
|
|
libraryHaskellDepends = [
|
2018-11-09 17:16:58 +01:00
|
|
|
base bytestring Only optparse-applicative semigroups
|
|
|
|
system-filepath text time transformers void
|
2017-08-19 16:16:10 +02:00
|
|
|
];
|
|
|
|
description = "Auto-generate a command-line parser for your datatype";
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
}
|