summaryrefslogtreecommitdiff
path: root/events/events.nix
blob: dba4055fd460d80d4c64c07ab0c316a76d12ac5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ mkDerivation, base, stdenv }:
mkDerivation {
  pname = "events";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base ];
  homepage = "https://git.yggdrasil.li/gkleen/pub/events";
  description = "An appointment book";
  license = stdenv.lib.licenses.mit;
}