blob: a8e1d9b789fe9a4e8d15585e132d151eacb2c7d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
fetchFromGitLab,
lib,
libpulseaudio,
libtiff,
meson,
ninja,
pkg-config,
scdoc,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libdng";
version = "0.2.2";
outputs = [
"out"
"dev"
];
src = fetchFromGitLab {
owner = "megapixels-org";
repo = "libdng";
tag = finalAttrs.version;
hash = "sha256-2Kwz5K37I3HnnKePyY4nKYwnGHP09vr6IThiuKd3EfQ=";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
meson
ninja
pkg-config
scdoc
];
buildInputs = [
libpulseaudio
libtiff
];
doCheck = true;
strictDeps = true;
meta = {
changelog = "https://gitlab.com/megapixels-org/libdng/-/tags/${finalAttrs.src.tag}";
description = "Interface library between libtiff and the world to make sure the output is valid DNG";
homepage = "https://gitlab.com/megapixels-org/libdng";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
platforms = lib.platforms.linux;
};
})
|