mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
31 lines
821 B
Nix
31 lines
821 B
Nix
{ lib, stdenv, fetchurl, gettext, itstool, libxml2, yelp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-user-guide";
|
|
version = "1.24.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "0ddxya84iydvy85dbqls0wmz2rph87wri3rsdhv4rkbhh5g4sd7f";
|
|
};
|
|
|
|
nativeBuildInputs = [ itstool gettext libxml2 ];
|
|
|
|
buildInputs = [ yelp ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace mate-user-guide.desktop.in.in \
|
|
--replace "Exec=yelp" "Exec=${yelp}/bin/yelp"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "MATE User Guide";
|
|
homepage = "https://mate-desktop.org";
|
|
license = with licenses; [ gpl2Plus fdl12 ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|