postprocessd: init at 0.3.0

This commit is contained in:
Luflosi
2024-11-03 19:10:56 +01:00
parent 5d9936f637
commit 07c8520116
+53
View File
@@ -0,0 +1,53 @@
{
lib,
fetchFromSourcehut,
libexif,
libraw,
meson,
ninja,
opencv4,
pkg-config,
scdoc,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "postprocessd";
version = "0.3.0";
src = fetchFromSourcehut {
owner = "~martijnbraam";
repo = "postprocessd";
rev = finalAttrs.version;
hash = "sha256-xqEjjAv27TUrEU/5j8Um7fTFjmIYZovyJCccbtHPuGo=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
scdoc
];
depsBuildBuild = [
pkg-config
];
buildInputs = [
libexif
libraw
opencv4
];
strictDeps = true;
meta = {
description = "Queueing megapixels post-processor";
homepage = "https://git.sr.ht/~martijnbraam/postprocessd";
changelog = "https://git.sr.ht/~martijnbraam/postprocessd/refs/${finalAttrs.version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ Luflosi ];
platforms = lib.platforms.linux;
mainProgram = "postprocess-single";
};
})