about summary refs log tree commit diff
path: root/pkgs/tools/graphics/sanjuuni
diff options
context:
space:
mode:
authorTomo <68489118+Tomodachi94@users.noreply.github.com>2023-02-26 14:19:21 -0800
committerTomo <68489118+tomodachi94@users.noreply.github.com>2023-05-17 17:13:36 +0000
commit4591fc2d38ae4b5a84edb29b9d0a658e170b3f28 (patch)
tree1e70f289ffa93d9b1b29f0b6f5d098301195cb73 /pkgs/tools/graphics/sanjuuni
parent203e1cb49986de7452cb907417fedc80a43a6e70 (diff)
sanjuuni: 0.3 -> 0.4
This commit bumps Sanjuuni's version. It also
adds OpenCL as a new dependency.

Changelog: https://github.com/MCJack123/sanjuuni/releases/tag/0.4
Diffstat (limited to 'pkgs/tools/graphics/sanjuuni')
-rw-r--r--pkgs/tools/graphics/sanjuuni/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/sanjuuni/default.nix b/pkgs/tools/graphics/sanjuuni/default.nix
index a0b2accb6b025..71807b0db0195 100644
--- a/pkgs/tools/graphics/sanjuuni/default.nix
+++ b/pkgs/tools/graphics/sanjuuni/default.nix
@@ -4,17 +4,19 @@
 , pkg-config
 , ffmpeg
 , poco
+, ocl-icd
+, opencl-clhpp
 }:
 
 stdenv.mkDerivation rec {
   pname = "sanjuuni";
-  version = "0.3";
+  version = "0.4";
 
   src = fetchFromGitHub {
     owner = "MCJack123";
     repo = "sanjuuni";
     rev = version;
-    sha256 = "sha256-8IbdLXWUtT2VN6Eu1b8x4DnyI8JOd/12t0XDa6o3N+A=";
+    sha256 = "sha256-wgtyrik4Z5AXd8MHkiMuxMpGh/xcEtNqivyhvL68aac=";
   };
 
   nativeBuildInputs = [
@@ -24,6 +26,8 @@ stdenv.mkDerivation rec {
   buildInputs = [
     ffmpeg
     poco
+    ocl-icd
+    opencl-clhpp
   ];
 
   installPhase = ''