summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-08-31 01:41:43 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2019-08-31 01:41:43 +0800
commitb2cc915003eb1d49bb2add1231d21fa573daa7fb (patch)
tree2a66402da1445a89ae831e458f99e42fa3dace9d /pkgs/applications/blockchains
parenteedf3dc6e28ddc6b8315ea8a4b5dd0d46b09f3a7 (diff)
downloadnixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.tar
nixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.tar.gz
nixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.tar.bz2
nixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.tar.lz
nixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.tar.xz
nixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.tar.zst
nixpkgs-b2cc915003eb1d49bb2add1231d21fa573daa7fb.zip
parity: Update buildInputs and nativeBuildInputs
Move cmake and pkgconfig from buildInputs to nativeBuildInputs
Remove unneeded perl from buildInputs
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/parity/parity.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/blockchains/parity/parity.nix b/pkgs/applications/blockchains/parity/parity.nix
index 79831f3304d..fbc43cd3402 100644
--- a/pkgs/applications/blockchains/parity/parity.nix
+++ b/pkgs/applications/blockchains/parity/parity.nix
@@ -7,11 +7,10 @@
 , fetchFromGitHub
 , rustPlatform
 
-, pkgconfig
+, cmake
 , openssl
+, pkgconfig
 , systemd
-, cmake
-, perl
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -26,10 +25,9 @@ rustPlatform.buildRustPackage rec {
     inherit sha256;
   };
 
-  buildInputs = [
-    pkgconfig cmake perl
-    systemd.lib systemd.dev openssl openssl.dev
-  ];
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  buildInputs = [ openssl systemd ];
 
   cargoBuildFlags = [ "--features final" ];