summaryrefslogtreecommitdiff
path: root/trivmix.nix
blob: be84746bf380c0d8eb79f0d7d4fc6d0a915eabbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, base, case-insensitive, data-default, directory
, explicit-exception, filelock, filepath, heredoc, hinotify, jack
, optparse-applicative, process, refined, stdenv, systemd
, transformers, unix
}:
mkDerivation {
  pname = "trivmix";
  version = "3.3.2";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    base case-insensitive data-default refined
  ];
  executableHaskellDepends = [
    base directory explicit-exception filelock filepath heredoc
    hinotify jack optparse-applicative process refined systemd
    transformers unix
  ];
  license = stdenv.lib.licenses.publicDomain;
}