diff options
Diffstat (limited to 'trivmix.nix')
-rw-r--r-- | trivmix.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/trivmix.nix b/trivmix.nix index c8149cf..873c7bf 100644 --- a/trivmix.nix +++ b/trivmix.nix | |||
@@ -1,17 +1,18 @@ | |||
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, hinotify, jack |
3 | , optparse-applicative, process, stdenv, transformers, unix | 3 | , optparse-applicative, process, stdenv, systemd, transformers |
4 | , unix | ||
4 | }: | 5 | }: |
5 | mkDerivation { | 6 | mkDerivation { |
6 | pname = "trivmix"; | 7 | pname = "trivmix"; |
7 | version = "2.7.4"; | 8 | version = "2.7.5"; |
8 | src = ./.; | 9 | src = ./.; |
9 | isLibrary = true; | 10 | isLibrary = true; |
10 | isExecutable = true; | 11 | isExecutable = true; |
11 | libraryHaskellDepends = [ base case-insensitive data-default ]; | 12 | libraryHaskellDepends = [ base case-insensitive data-default ]; |
12 | executableHaskellDepends = [ | 13 | executableHaskellDepends = [ |
13 | base directory explicit-exception filelock filepath hinotify jack | 14 | base directory explicit-exception filelock filepath hinotify jack |
14 | optparse-applicative process transformers unix | 15 | optparse-applicative process systemd transformers unix |
15 | ]; | 16 | ]; |
16 | license = stdenv.lib.licenses.publicDomain; | 17 | license = stdenv.lib.licenses.publicDomain; |
17 | } | 18 | } |