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