about summary refs log tree commit diff
path: root/users/Profpatsch/ical-smolify/default.nix
blob: f67d175ce3f3013b1400e54b74b40ed040dab6ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ depot, pkgs, lib, ... }:

let
  cas-serve = pkgs.writers.writeHaskell "ical-smolify"
    {
      libraries = [
        pkgs.haskellPackages.iCalendar
        depot.users.Profpatsch.my-prelude
        depot.users.Profpatsch.execline.exec-helpers-hs

      ];
      ghcArgs = [ "-threaded" ];
    } ./IcalSmolify.hs;

in
cas-serve