blob: 35d3b97283d0e43e64916ad55fdc111e5c606987 (
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
|
{
lib,
stdenv,
fetchurl,
gettext,
itstool,
libxml2,
yelp,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mate-user-guide";
version = "1.28.0";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor finalAttrs.version}/mate-user-guide-${finalAttrs.version}.tar.xz";
sha256 = "U+8IFPUGVEYU7WGre+UiHMjTqfFPfvlpjJD+fkYBS54=";
};
nativeBuildInputs = [
itstool
gettext
libxml2
];
buildInputs = [
yelp
];
postPatch = ''
substituteInPlace mate-user-guide.desktop.in.in \
--replace-fail "Exec=yelp" "Exec=${yelp}/bin/yelp"
'';
enableParallelBuilding = true;
passthru.updateScript = gitUpdater {
url = "https://git.mate-desktop.org/mate-user-guide";
odd-unstable = true;
rev-prefix = "v";
};
meta = {
description = "MATE User Guide";
homepage = "https://mate-desktop.org";
license = with lib.licenses; [
gpl2Plus
fdl11Plus
];
platforms = lib.platforms.unix;
teams = [ lib.teams.mate ];
};
})
|