tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
megatools: fmt
zowoq
3 years ago
0f45ffa2
870d43c5
+30
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
megatools
default.nix
+30
-6
pkgs/tools/networking/megatools/default.nix
···
1
-
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, glib, fuse, curl, glib-networking
2
-
, asciidoc, libxml2, docbook_xsl, docbook_xml_dtd_45, libxslt, wrapGAppsNoGuiHook }:
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3
4
stdenv.mkDerivation rec {
5
pname = "megatools";
···
12
};
13
14
nativeBuildInputs = [
15
-
autoreconfHook pkg-config wrapGAppsNoGuiHook asciidoc libxml2
16
-
docbook_xsl docbook_xml_dtd_45 libxslt
0
0
0
0
0
0
17
];
18
-
buildInputs = [ glib glib-networking curl ]
19
-
++ lib.optionals stdenv.isLinux [ fuse ];
0
0
0
0
20
21
enableParallelBuilding = true;
22
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchgit
4
+
, autoreconfHook
5
+
, pkg-config
6
+
, glib
7
+
, fuse
8
+
, curl
9
+
, glib-networking
10
+
, asciidoc
11
+
, libxml2
12
+
, docbook_xsl
13
+
, docbook_xml_dtd_45
14
+
, libxslt
15
+
, wrapGAppsNoGuiHook
16
+
}:
17
18
stdenv.mkDerivation rec {
19
pname = "megatools";
···
26
};
27
28
nativeBuildInputs = [
29
+
asciidoc
30
+
autoreconfHook
31
+
docbook_xml_dtd_45
32
+
docbook_xsl
33
+
libxml2
34
+
libxslt
35
+
pkg-config
36
+
wrapGAppsNoGuiHook
37
];
38
+
39
+
buildInputs = [
40
+
curl
41
+
glib
42
+
glib-networking
43
+
] ++ lib.optionals stdenv.isLinux [ fuse ];
44
45
enableParallelBuilding = true;
46