2018-02-13 22:44:07 +00:00
|
|
|
{ stdenv, fetchurl, intltool, itstool, libxml2, yelp, mate }:
|
2017-12-31 02:33:53 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-user-guide-${version}";
|
2018-07-09 21:33:55 +01:00
|
|
|
version = "1.21.0";
|
2017-12-31 02:33:53 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 22:44:07 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-07-09 21:33:55 +01:00
|
|
|
sha256 = "0ayg570000calzpj51dwhh5mil11s0nrhl21c0si3sxr8f5cld6q";
|
2017-12-31 02:33:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ itstool intltool libxml2 ];
|
|
|
|
|
|
|
|
buildInputs = [ yelp ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE User Guide";
|
|
|
|
homepage = http://mate-desktop.org;
|
|
|
|
license = with licenses; [ gpl2Plus fdl12 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|