summaryrefslogtreecommitdiff
path: root/trivmix.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-09-03 23:54:26 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-09-03 23:54:26 +0200
commit6b2a21404d2a4fa2c17c4cf36defe0623016b025 (patch)
treed06db15fc8e902647c79549c3b443e8dede0080d /trivmix.nix
parentd93226b3ad30e65a607a0ee47acd32de844d312c (diff)
downloadtrivmix-6b2a21404d2a4fa2c17c4cf36defe0623016b025.tar
trivmix-6b2a21404d2a4fa2c17c4cf36defe0623016b025.tar.gz
trivmix-6b2a21404d2a4fa2c17c4cf36defe0623016b025.tar.bz2
trivmix-6b2a21404d2a4fa2c17c4cf36defe0623016b025.tar.xz
trivmix-6b2a21404d2a4fa2c17c4cf36defe0623016b025.zip
systemd notify
Diffstat (limited to 'trivmix.nix')
-rw-r--r--trivmix.nix7
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}:
5mkDerivation { 6mkDerivation {
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}