vkdt: 0.6.0 -> 0.7.0

Also adds a test checking the version of vkdt for sanity

+8 -2
+8 -2
pkgs/applications/graphics/vkdt/default.nix
··· 19 19 , ffmpeg 20 20 , libvorbis 21 21 , libmad 22 + , testers 23 + , vkdt 22 24 }: 23 25 24 26 stdenv.mkDerivation rec { 25 27 pname = "vkdt"; 26 - version = "0.6.0"; 28 + version = "0.7.0"; 27 29 28 30 src = fetchurl { 29 31 url = "https://github.com/hanatos/${pname}/releases/download/${version}/${pname}-${version}.tar.xz"; 30 - sha256 = "sha256-Au0S+9Y+H0FuoHZacnN4azQFQB0tarT2bHNsLxujfLw="; 32 + hash = "sha256-Sk/K+EWvJBkwwD5R1gH9ZQHetojrJTTJrKW9Dvr+lHA="; 31 33 }; 32 34 33 35 strictDeps = true; ··· 60 62 dontUseCmakeConfigure = true; 61 63 62 64 makeFlags = [ "DESTDIR=$(out)" "prefix=" ]; 65 + 66 + passthru.tests.version = testers.testVersion { 67 + package = vkdt; 68 + }; 63 69 64 70 meta = with lib; { 65 71 description = "A vulkan-powered raw image processor";