aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-04 02:30:12 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-09-04 02:30:12 +0000
commite12bcabdcbddc228d7af157bb3c2090e324c59a7 (patch)
tree6575bf71c0672639f015ae14ca7c302f0eecb1d5
parent39ae9a3d4a96ca4a5460c1b6264e77e71c3aad5f (diff)
Remove duplicate buildInputs
-rw-r--r--flake.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/flake.nix b/flake.nix
index 20c5089ee..843f9a85f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -69,6 +69,7 @@
buildPackages.libxslt
buildPackages.docbook5
buildPackages.docbook_xsl_ns
+ buildPackages.autoconf-archive
buildPackages.autoreconfHook
buildPackages.pkgconfig
@@ -79,18 +80,9 @@
];
buildDeps =
- [ bison
- flex
- libxml2
- libxslt
- docbook5
- docbook_xsl_ns
- autoconf-archive
- autoreconfHook
-
- curl
+ [ curl
bzip2 xz brotli zlib editline
- openssl pkgconfig sqlite
+ openssl sqlite
libarchive
boost
(if lib.versionAtLeast lib.version "20.03pre"
@@ -178,14 +170,17 @@
src = self;
+ nativeBuildInputs =
+ [ buildPackages.autoconf-archive
+ buildPackages.autoreconfHook
+ buildPackages.pkgconfig
+ ];
+
buildInputs =
- [ autoconf-archive
- autoreconfHook
- nix
+ [ nix
curl
bzip2
xz
- pkgconfig
pkgs.perl
boost
]