diff options
Diffstat (limited to 'trivmix.nix')
-rw-r--r-- | trivmix.nix | 17 |
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 | }: |
6 | mkDerivation { | 6 | mkDerivation { |
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 | } |