17 lines
541 B
Nix
17 lines
541 B
Nix
{ stdenv, fetchurl, pkgconfig, file, gnome3, itstool, libxml2, intltool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gnome3.yelp itstool libxml2 intltool ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://help.gnome.org/users/gnome-help/${gnome3.version}";
|
|
description = "User and system administration help for the GNOME desktop";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.cc-by-30;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|