nixpkgs/pkgs/desktops/mate/mate-user-guide/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

23 lines
654 B
Nix

{ stdenv, fetchurl, intltool, itstool, libxml2, yelp, mate }:
stdenv.mkDerivation rec {
name = "mate-user-guide-${version}";
version = "1.20.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "0cbi625xd7nsifvxbixsb29kj2zj14sn0sl61wkcvasz7whg7w6r";
};
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 ];
};
}