nixpkgs/pkgs/applications/graphics/vkdt/default.nix
Anton Mosich 3743b24bf9
vkdt: 0.6.0 -> 0.7.0
Also adds a test checking the version of vkdt for sanity
2023-11-18 20:58:59 +01:00

78 lines
1.2 KiB
Nix

{ lib
, stdenv
, fetchurl
, vulkan-headers
, vulkan-tools
, vulkan-loader
, glslang
, glfw
, libjpeg
, pkg-config
, rsync
, cmake
, clang
, llvm
, llvmPackages
, pugixml
, freetype
, exiv2
, ffmpeg
, libvorbis
, libmad
, testers
, vkdt
}:
stdenv.mkDerivation rec {
pname = "vkdt";
version = "0.7.0";
src = fetchurl {
url = "https://github.com/hanatos/${pname}/releases/download/${version}/${pname}-${version}.tar.xz";
hash = "sha256-Sk/K+EWvJBkwwD5R1gH9ZQHetojrJTTJrKW9Dvr+lHA=";
};
strictDeps = true;
nativeBuildInputs = [
clang
cmake
glslang
llvm
llvmPackages.openmp
pkg-config
rsync
];
buildInputs = [
exiv2
ffmpeg
freetype
glfw
libjpeg
libmad
libvorbis
llvmPackages.openmp
pugixml
vulkan-headers
vulkan-loader
vulkan-tools
];
dontUseCmakeConfigure = true;
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";
license = licenses.bsd2;
maintainers = with maintainers; [ paperdigits ];
platforms = platforms.linux;
};
}