diff options
author | tv <tv@krebsco.de> | 2021-03-14 22:32:35 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-03-14 22:32:35 +0100 |
commit | d151f66a8500f1b0a6aa2224f19e18062b172931 (patch) | |
tree | 24199e10c9ebc72b898188a0f2bdcf4b2e6ee244 /pager.nix | |
parent | 032cb86ff8108eb4915a692015da344a41f78506 (diff) |
wipwip
Diffstat (limited to 'pager.nix')
-rw-r--r-- | pager.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pager.nix b/pager.nix new file mode 100644 index 0000000..5f0de90 --- /dev/null +++ b/pager.nix @@ -0,0 +1,19 @@ +{ mkDerivation, aeson, base, blessings, bytestring, containers +, data-default, hack, http-client, http-types, io-streams, network +, optparse-applicative, probability, scanner, speculate, split +, stdenv, template-haskell, terminal-size, text, time, unix +}: +mkDerivation { + pname = "pager"; + version = "1.0.0"; + src = ./.; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ aeson base template-haskell text ]; + executableHaskellDepends = [ + aeson base blessings bytestring containers data-default hack + http-client http-types io-streams network optparse-applicative + probability scanner speculate split terminal-size text time unix + ]; + license = stdenv.lib.licenses.mit; +} |