summaryrefslogtreecommitdiff
path: root/walint-cli/default.nix
blob: 938bc4f8458502fb01fdcca1e124c4a60269577f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ mkDerivation, aeson, aeson-pretty, base, bytestring
, getopt-generics, lib, process, template-haskell, text, universum
, walint
}:
mkDerivation {
  pname = "walint-cli";
  version = "0.1";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson aeson-pretty base bytestring getopt-generics process
    template-haskell text universum walint
  ];
  homepage = "https://stuebinm.eu/git/walint";
  license = "unknown";
  mainProgram = "walint";
}