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