optparse-generic/default.nix
2020-09-30 22:06:12 -07:00

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;
}