nixpkgs/pkgs/desktops/gnome-3/core/yelp-xsl/default.nix
Jan Tojnar 5cc18c4781
gnome3: remove versionBranch attribute
Standard library now contains stdenv.lib.versions.majorMinor,
which does the same.
2018-10-05 02:17:19 +02:00

30 lines
864 B
Nix

{ stdenv, intltool, fetchurl, pkgconfig
, itstool, libxml2, libxslt, gnome3 }:
stdenv.mkDerivation rec {
name = "yelp-xsl-${version}";
version = "3.28.0";
src = fetchurl {
url = "mirror://gnome/sources/yelp-xsl/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "14rznm1qpsnmkwksnkd5j7zplakl01kvrcw0fdmd5gdc65xz9kcc";
};
passthru = {
updateScript = gnome3.updateScript { packageName = "yelp-xsl"; attrPath = "gnome3.yelp-xsl"; };
};
doCheck = true;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ intltool itstool libxml2 libxslt ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Yelp;
description = "Yelp's universal stylesheets for Mallard and DocBook";
maintainers = gnome3.maintainers;
license = [licenses.gpl2 licenses.lgpl2];
platforms = platforms.linux;
};
}