Skip to content

Commit 07c8520

Browse files
committed
postprocessd: init at 0.3.0
1 parent 5d9936f commit 07c8520

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
lib,
3+
fetchFromSourcehut,
4+
libexif,
5+
libraw,
6+
meson,
7+
ninja,
8+
opencv4,
9+
pkg-config,
10+
scdoc,
11+
stdenv,
12+
}:
13+
14+
stdenv.mkDerivation (finalAttrs: {
15+
pname = "postprocessd";
16+
version = "0.3.0";
17+
18+
src = fetchFromSourcehut {
19+
owner = "~martijnbraam";
20+
repo = "postprocessd";
21+
rev = finalAttrs.version;
22+
hash = "sha256-xqEjjAv27TUrEU/5j8Um7fTFjmIYZovyJCccbtHPuGo=";
23+
};
24+
25+
nativeBuildInputs = [
26+
meson
27+
ninja
28+
pkg-config
29+
scdoc
30+
];
31+
32+
depsBuildBuild = [
33+
pkg-config
34+
];
35+
36+
buildInputs = [
37+
libexif
38+
libraw
39+
opencv4
40+
];
41+
42+
strictDeps = true;
43+
44+
meta = {
45+
description = "Queueing megapixels post-processor";
46+
homepage = "https://git.sr.ht/~martijnbraam/postprocessd";
47+
changelog = "https://git.sr.ht/~martijnbraam/postprocessd/refs/${finalAttrs.version}";
48+
license = lib.licenses.gpl3Only;
49+
maintainers = with lib.maintainers; [ Luflosi ];
50+
platforms = lib.platforms.linux;
51+
mainProgram = "postprocess-single";
52+
};
53+
})

0 commit comments

Comments
 (0)