1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gcab: add devdoc

This commit is contained in:
Jan Tojnar 2019-11-07 13:51:04 +01:00
parent 4e96a9d9f7
commit 40d77f8f01
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -2,6 +2,9 @@
, fetchurl
, gettext
, gobject-introspection
, gtk-doc
, docbook_xsl
, docbook_xml_dtd_43
, pkgconfig
, meson
, ninja
@ -16,7 +19,7 @@ stdenv.mkDerivation rec {
pname = "gcab";
version = "1.2";
outputs = [ "bin" "out" "dev" ];
outputs = [ "bin" "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
@ -31,6 +34,9 @@ stdenv.mkDerivation rec {
vala
gettext
gobject-introspection
gtk-doc
docbook_xsl
docbook_xml_dtd_43
];
buildInputs = [
@ -39,7 +45,6 @@ stdenv.mkDerivation rec {
];
mesonFlags = [
"-Ddocs=false"
"-Dtests=false"
];