vkdt: 0.6.0 -> 0.7.0

Also adds a test checking the version of vkdt for sanity
This commit is contained in:
Anton Mosich 2023-10-19 12:58:38 +02:00
parent 8896579a83
commit 3743b24bf9
No known key found for this signature in database
GPG key ID: 28F77AAFFAF5BAF6

View file

@ -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";