mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
24 lines
663 B
Nix
24 lines
663 B
Nix
{ stdenv, fetchurl, intltool, itstool, libxml2, yelp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-user-guide-${version}";
|
|
version = "1.22.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "02zlfdhrvamd299pbf5s19pr90y8yah84g12shwihlxff7d3hxvs";
|
|
};
|
|
|
|
nativeBuildInputs = [ itstool intltool libxml2 ];
|
|
|
|
buildInputs = [ yelp ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "MATE User Guide";
|
|
homepage = https://mate-desktop.org;
|
|
license = with licenses; [ gpl2Plus fdl12 ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|