nixpkgs/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/default.nix
2016-06-06 20:33:58 +02:00

16 lines
430 B
Nix

{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
buildInputs = [ intltool itstool libxml2 ];
meta = with stdenv.lib; {
homepage = https://github.com/GNOME/gnome-devel-docs;
description = "Developer documentation for GNOME";
maintainers = gnome3.maintainers;
license = licenses.fdl12;
platforms = platforms.linux;
};
}