nixpkgs/pkgs/desktops/mate/mate-user-guide/default.nix

47 lines
926 B
Nix

{ lib
, stdenv
, fetchurl
, gettext
, itstool
, libxml2
, yelp
, mateUpdateScript
}:
stdenv.mkDerivation rec {
pname = "mate-user-guide";
version = "1.28.0";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${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 = mateUpdateScript { inherit pname; };
meta = with lib; {
description = "MATE User Guide";
homepage = "https://mate-desktop.org";
license = with licenses; [ gpl2Plus fdl11Plus ];
platforms = platforms.unix;
maintainers = teams.mate.members;
};
}