about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2021-12-13 18:22:55 +0100
committerehmry <ehmry@posteo.net>2021-12-13 22:00:02 +0000
commit1d0f825944402c43ebb51dd89511d62a9d3257d5 (patch)
tree8fd22c44521ddcba11cd5fbb5b7ef7654d8c95a0 /pkgs/os-specific
parenta7a2c30267020e8fee66ea790f419c5a26eccf9f (diff)
solo5: 0.6.8 -> 0.6.9
https://github.com/Solo5/solo5/releases/tag/v0.6.9
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/solo5/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/os-specific/solo5/default.nix b/pkgs/os-specific/solo5/default.nix
index 71584aff77602..d45a2f0665de3 100644
--- a/pkgs/os-specific/solo5/default.nix
+++ b/pkgs/os-specific/solo5/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchurl, pkg-config, libseccomp, util-linux, qemu }:
 
 let
-  version = "0.6.8";
+  version = "0.6.9";
   # list of all theoretically available targets
   targets = [
     "genode"
@@ -19,9 +19,8 @@ in stdenv.mkDerivation {
   buildInputs = lib.optional (stdenv.hostPlatform.isLinux) libseccomp;
 
   src = fetchurl {
-    url =
-      "https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz";
-    sha256 = "sha256-zrxNCXJIuEbtE3YNRK8Bxu2koHsQkcF+xItoIyhj9Uc=";
+    url = "https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz";
+    sha256 = "03lvk9mab3yxrmi73wrvvhykqcydjrsda0wj6aasnjm5lx9jycpr";
   };
 
   hardeningEnable = [ "pie" ];