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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{ stdenv
, lib
, fetchurl
, substituteAll
, bubblewrap
, cargo
, git
, meson
, ninja
, pkg-config
, rustc
, gtk4
, cairo
, libheif
, libxml2
, gnome
}:
stdenv.mkDerivation (finalAttrs: {
pname = "glycin-loaders";
version = "0.1.2";
src = fetchurl {
url = "mirror://gnome/sources/glycin-loaders/${lib.versions.majorMinor finalAttrs.version}/glycin-loaders-${finalAttrs.version}.tar.xz";
hash = "sha256-x2wBklq9BwF0WJzLkWpEpXOrZbHp1JPxVOQnVkMebdc=";
};
patches = [
# Fix paths in glycin library.
# Not actually needed for this package since we are only building loaders
# and this patch is relevant just to apps that use the loaders
# but apply it here to ensure the patch continues to apply.
finalAttrs.passthru.glycinPathsPatch
];
nativeBuildInputs = [
cargo
git
meson
ninja
pkg-config
rustc
];
buildInputs = [
gtk4 # for GdkTexture
cairo
libheif
libxml2 # for librsvg crate
];
passthru = {
updateScript = gnome.updateScript {
packageName = "glycin-loaders";
};
glycinPathsPatch = substituteAll {
src = ./fix-glycin-paths.patch;
bwrap = "${bubblewrap}/bin/bwrap";
};
};
meta = with lib; {
description = "Glycin loaders for several formats";
homepage = "https://gitlab.gnome.org/sophie-h/glycin";
maintainers = teams.gnome.members;
license = with licenses; [ mpl20 /* or */ lgpl21Plus ];
platforms = platforms.linux;
};
})
|