2019-04-21 17:40:55 +02:00
|
|
|
{ stdenv, fetchurl, intltool, itstool, libxml2, yelp }:
|
2017-12-31 03:33:53 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-user-guide-${version}";
|
2019-07-13 13:02:21 +02:00
|
|
|
version = "1.22.2";
|
2017-12-31 03:33:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-21 17:40:55 +02:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-07-13 13:02:21 +02:00
|
|
|
sha256 = "01kcszsjiriqp4hf1k4fhazi2yfqlkn415sfgx0jw0p821bzqf2h";
|
2017-12-31 03:33:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ itstool intltool libxml2 ];
|
|
|
|
|
|
|
|
buildInputs = [ yelp ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE User Guide";
|
2019-04-15 01:25:45 +02:00
|
|
|
homepage = https://mate-desktop.org;
|
2017-12-31 03:33:53 +01:00
|
|
|
license = with licenses; [ gpl2Plus fdl12 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|