summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/haskell
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2026-01-11 22:18:30 +0100
committermakefu <github@syntax-fehler.de>2026-01-11 22:18:30 +0100
commitdce904dd1a33c8a2ca9f56b0f33f85f493eda499 (patch)
treea6cfc9d606fbfcb61101498f3ca0bf5cd76bc2c1 /krebs/5pkgs/haskell
parentf02d2c528266e51b56249a9050a68c06dd0fd15f (diff)
parent2772413f6c0f8466d07775f40b48447ac8a0501b (diff)
Merge remote-tracking branch 'github/master'
Diffstat (limited to 'krebs/5pkgs/haskell')
-rw-r--r--krebs/5pkgs/haskell/reaktor2/default.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/krebs/5pkgs/haskell/reaktor2/default.nix b/krebs/5pkgs/haskell/reaktor2/default.nix
index 3f227a4d6..f40b3cc89 100644
--- a/krebs/5pkgs/haskell/reaktor2/default.nix
+++ b/krebs/5pkgs/haskell/reaktor2/default.nix
@@ -1,28 +1,29 @@
-{ mkDerivation, aeson, async, attoparsec, base, blessings
-, bytestring, containers, data-default, filepath, hashable, lens
-, lens-aeson, lib, network, network-simple, network-simple-tls
-, network-uri, pcre-light, process, random, servant-server
-, string-conversions, stringsearch, text, time, transformers
-, unagi-chan, unix, unordered-containers, vector, wai, warp
-, fetchgit
+{ mkDerivation, aeson, async, attoparsec, base, base64, blessings
+, bytestring, containers, data-default, fetchgit, filepath
+, hashable, lens, lens-aeson, lib, network, network-simple
+, network-simple-tls, network-uri, pcre-light, process, random
+, servant-server, string-conversions, stringsearch, text, time
+, transformers, unagi-chan, unix, unordered-containers, vector, wai
+, warp
}:
mkDerivation {
pname = "reaktor2";
- version = "0.4.3";
+ version = "0.4.4";
src = fetchgit {
url = "https://cgit.krebsco.de/reaktor2";
- hash = "sha256-gsYMtPaljHBgIVV2+uwyyklOhQjLFdTBVRGG3UVeIVw=";
- rev = "30309581b7ae02b466b466af43009b6b1edb9b39";
+ sha256 = "1r0dbhniq81z2akb3lxng92y288d7pffj5byyq9mbry241np7631";
+ rev = "f50e8b2186042f40392c823845eb3a184d0278de";
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson async attoparsec base blessings bytestring containers
+ aeson async attoparsec base base64 blessings bytestring containers
data-default filepath hashable lens lens-aeson network
network-simple network-simple-tls network-uri pcre-light process
random servant-server string-conversions stringsearch text time
transformers unagi-chan unix unordered-containers vector wai warp
];
license = lib.licenses.mit;
+ mainProgram = "reaktor";
}