mirror of
https://github.com/Gabriella439/Haskell-Optparse-Generic-Library.git
synced 2024-11-26 08:01:51 +03:00
16 lines
465 B
Nix
16 lines
465 B
Nix
{ mkDerivation, base, bytestring, Only, optparse-applicative
|
|
, semigroups, stdenv, system-filepath, text, time, transformers
|
|
, void
|
|
}:
|
|
mkDerivation {
|
|
pname = "optparse-generic";
|
|
version = "1.2.3";
|
|
src = ./.;
|
|
libraryHaskellDepends = [
|
|
base bytestring Only optparse-applicative semigroups
|
|
system-filepath text time transformers void
|
|
];
|
|
description = "Auto-generate a command-line parser for your datatype";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|