summaryrefslogtreecommitdiff
path: root/trivmix.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-05-15 12:50:42 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2018-05-15 12:50:42 +0200
commit86ce943d5a49982246ab83e4acc72ffb7c22567c (patch)
tree9a73ed3f112c302e5a1ed980c6505fa31fcf9287 /trivmix.nix
parent31a88f4dd0800caeeb56d785b1876a9c2b88fb93 (diff)
downloadtrivmix-86ce943d5a49982246ab83e4acc72ffb7c22567c.tar
trivmix-86ce943d5a49982246ab83e4acc72ffb7c22567c.tar.gz
trivmix-86ce943d5a49982246ab83e4acc72ffb7c22567c.tar.bz2
trivmix-86ce943d5a49982246ab83e4acc72ffb7c22567c.tar.xz
trivmix-86ce943d5a49982246ab83e4acc72ffb7c22567c.zip
Implement balance & refine types
Diffstat (limited to 'trivmix.nix')
-rw-r--r--trivmix.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/trivmix.nix b/trivmix.nix
index dcc06c0..a823793 100644
--- a/trivmix.nix
+++ b/trivmix.nix
@@ -1,18 +1,21 @@
1{ mkDerivation, base, case-insensitive, data-default, directory 1{ mkDerivation, base, case-insensitive, data-default, directory
2, explicit-exception, filelock, filepath, hinotify, jack 2, explicit-exception, filelock, filepath, heredoc, hinotify, jack
3, optparse-applicative, process, stdenv, systemd, transformers 3, optparse-applicative, process, refined, stdenv, systemd
4, unix 4, transformers, unix
5}: 5}:
6mkDerivation { 6mkDerivation {
7 pname = "trivmix"; 7 pname = "trivmix";
8 version = "2.7.6"; 8 version = "3.0.0";
9 src = ./.; 9 src = ./.;
10 isLibrary = true; 10 isLibrary = true;
11 isExecutable = true; 11 isExecutable = true;
12 libraryHaskellDepends = [ base case-insensitive data-default ]; 12 libraryHaskellDepends = [
13 base case-insensitive data-default refined
14 ];
13 executableHaskellDepends = [ 15 executableHaskellDepends = [
14 base directory explicit-exception filelock filepath hinotify jack 16 base directory explicit-exception filelock filepath heredoc
15 optparse-applicative process systemd transformers unix 17 hinotify jack optparse-applicative process refined systemd
18 transformers unix
16 ]; 19 ];
17 license = stdenv.lib.licenses.publicDomain; 20 license = stdenv.lib.licenses.publicDomain;
18} 21}