summaryrefslogtreecommitdiff
path: root/trivmix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'trivmix.nix')
-rw-r--r--trivmix.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/trivmix.nix b/trivmix.nix
index bd9c278..8ddce63 100644
--- a/trivmix.nix
+++ b/trivmix.nix
@@ -1,6 +1,6 @@
1{ mkDerivation, base, case-insensitive, data-default, directory 1{ mkDerivation, base, case-insensitive, data-default, directory
2, explicit-exception, filelock, filepath, heredoc, hinotify, jack 2, explicit-exception, filelock, filepath, heredoc, hinotify, hpack
3, optparse-applicative, process, refined, scientific, stdenv 3, jack, optparse-applicative, process, refined, scientific, stdenv
4, systemd, th-lift, transformers, unix 4, systemd, th-lift, transformers, unix
5}: 5}:
6mkDerivation { 6mkDerivation {
@@ -12,10 +12,12 @@ mkDerivation {
12 libraryHaskellDepends = [ 12 libraryHaskellDepends = [
13 base case-insensitive data-default refined scientific th-lift 13 base case-insensitive data-default refined scientific th-lift
14 ]; 14 ];
15 libraryToolDepends = [ hpack ];
15 executableHaskellDepends = [ 16 executableHaskellDepends = [
16 base directory explicit-exception filelock filepath heredoc 17 base directory explicit-exception filelock filepath heredoc
17 hinotify jack optparse-applicative process refined scientific 18 hinotify jack optparse-applicative process refined scientific
18 systemd transformers unix 19 systemd transformers unix
19 ]; 20 ];
21 preConfigure = "hpack";
20 license = stdenv.lib.licenses.publicDomain; 22 license = stdenv.lib.licenses.publicDomain;
21} 23}