mirror of
https://github.com/Gabriella439/optparse-generic.git
synced 2024-11-22 21:48:54 +03:00
15 lines
441 B
Nix
15 lines
441 B
Nix
{ mkDerivation, base, bytestring, Only, optparse-applicative
|
|
, stdenv, system-filepath, text, time, transformers, void
|
|
}:
|
|
mkDerivation {
|
|
pname = "optparse-generic";
|
|
version = "1.4.4";
|
|
src = ./.;
|
|
libraryHaskellDepends = [
|
|
base bytestring Only optparse-applicative system-filepath text time
|
|
transformers void
|
|
];
|
|
description = "Auto-generate a command-line parser for your datatype";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|