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