optparse-generic/default.nix

15 lines
441 B
Nix
Raw Normal View History

2017-06-24 06:32:53 +03:00
{ mkDerivation, base, bytestring, Only, optparse-applicative
2020-07-31 20:19:03 +03:00
, stdenv, system-filepath, text, time, transformers, void
2016-12-20 09:01:15 +03:00
}:
mkDerivation {
pname = "optparse-generic";
2020-10-01 08:06:12 +03:00
version = "1.4.4";
2016-12-20 09:01:15 +03:00
src = ./.;
libraryHaskellDepends = [
2020-07-31 20:19:03 +03:00
base bytestring Only optparse-applicative system-filepath text time
transformers void
2016-12-20 09:01:15 +03:00
];
description = "Auto-generate a command-line parser for your datatype";
license = stdenv.lib.licenses.bsd3;
}