about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAnton Mosich <anton@mosich.at>2023-10-19 12:58:38 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-03-06 21:12:42 +0000
commite1c39d05d0481de63b6e01311309d5c90f62aa29 (patch)
treeacaa3265b7dc8a5863be62dad6076b2a137f613e /pkgs
parent138868d7b9ab0741f483f8dc7a8dbad400ce7991 (diff)
vkdt: 0.6.0 -> 0.7.0
Also adds a test checking the version of vkdt for sanity

(cherry picked from commit 3743b24bf93ac75d94cdc2d0402d401ab4a6bb5e)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/vkdt/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/vkdt/default.nix b/pkgs/applications/graphics/vkdt/default.nix
index ef7cba998dd7d..e7776062de44f 100644
--- a/pkgs/applications/graphics/vkdt/default.nix
+++ b/pkgs/applications/graphics/vkdt/default.nix
@@ -19,15 +19,17 @@
 , ffmpeg
 , libvorbis
 , libmad
+, testers
+, vkdt
 }:
 
 stdenv.mkDerivation rec {
   pname = "vkdt";
-  version = "0.6.0";
+  version = "0.7.0";
 
   src = fetchurl {
     url = "https://github.com/hanatos/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
-    sha256 = "sha256-Au0S+9Y+H0FuoHZacnN4azQFQB0tarT2bHNsLxujfLw=";
+    hash = "sha256-Sk/K+EWvJBkwwD5R1gH9ZQHetojrJTTJrKW9Dvr+lHA=";
   };
 
   strictDeps = true;
@@ -61,6 +63,10 @@ stdenv.mkDerivation rec {
 
   makeFlags = [ "DESTDIR=$(out)" "prefix=" ];
 
+  passthru.tests.version = testers.testVersion {
+    package = vkdt;
+  };
+
   meta = with lib; {
     description = "A vulkan-powered raw image processor";
     homepage = "https://github.com/hanatos/vkdt";