summaryrefslogtreecommitdiff
path: root/events/events.nix
blob: 458e78a2c3e22dce6eeb9d08cb6b7407445a5090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ mkDerivation, aeson, aeson-lens, base, data-default-class, lens
, lens-time, list-t, mtl, stdenv, time, tz
}:
mkDerivation {
  pname = "events";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson aeson-lens base data-default-class lens lens-time list-t mtl
    time tz
  ];
  homepage = "https://git.yggdrasil.li/gkleen/pub/events";
  description = "An appointment book";
  license = stdenv.lib.licenses.mit;
}