File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed
pkgs/by-name/po/postprocessd Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments