summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.12/core/gnome-user-docs/default.nix
blob: 2a237b15c21cb68ca3b92d9fa8e09fadf3e81ba2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, file, gnome3, itstool, libxml2, intltool }:

stdenv.mkDerivation rec {
  name = "gnome-user-docs-3.12.2";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-user-docs/3.12/${name}.tar.xz";
    sha256 = "1cj45lpa74vkbxyila3d6pn5m1gh51nljp9fjirxmzwi1h6wg7jd";
  };

  buildInputs = [ pkgconfig gnome3.yelp itstool libxml2 intltool ];

  meta = with stdenv.lib; {
    homepage = https://help.gnome.org/users/gnome-help/3.12;
    description = "User and system administration help for the Gnome desktop";
    maintainers = with maintainers; [ lethalman ];
    license = licenses.cc-by-30;
    platforms = platforms.linux;
  };
}