megatools: fmt
This commit is contained in:
parent
870d43c5aa
commit
0f45ffa21b
@ -1,5 +1,19 @@
|
|||||||
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, glib, fuse, curl, glib-networking
|
{ lib
|
||||||
, asciidoc, libxml2, docbook_xsl, docbook_xml_dtd_45, libxslt, wrapGAppsNoGuiHook }:
|
, stdenv
|
||||||
|
, fetchgit
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
, glib
|
||||||
|
, fuse
|
||||||
|
, curl
|
||||||
|
, glib-networking
|
||||||
|
, asciidoc
|
||||||
|
, libxml2
|
||||||
|
, docbook_xsl
|
||||||
|
, docbook_xml_dtd_45
|
||||||
|
, libxslt
|
||||||
|
, wrapGAppsNoGuiHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "megatools";
|
pname = "megatools";
|
||||||
@ -12,11 +26,21 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook pkg-config wrapGAppsNoGuiHook asciidoc libxml2
|
asciidoc
|
||||||
docbook_xsl docbook_xml_dtd_45 libxslt
|
autoreconfHook
|
||||||
|
docbook_xml_dtd_45
|
||||||
|
docbook_xsl
|
||||||
|
libxml2
|
||||||
|
libxslt
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsNoGuiHook
|
||||||
];
|
];
|
||||||
buildInputs = [ glib glib-networking curl ]
|
|
||||||
++ lib.optionals stdenv.isLinux [ fuse ];
|
buildInputs = [
|
||||||
|
curl
|
||||||
|
glib
|
||||||
|
glib-networking
|
||||||
|
] ++ lib.optionals stdenv.isLinux [ fuse ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user