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

24 lines
663 B
Nix
Raw Normal View History

{ 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 {
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";
homepage = https://mate-desktop.org;
2017-12-31 03:33:53 +01:00
license = with licenses; [ gpl2Plus fdl12 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}