about summary refs log tree commit diff
path: root/pkgs/applications/science/misc
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-29 07:59:33 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-29 12:37:25 +0100
commite841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9 (patch)
tree3f759f71186cefda0d2f86cee43609b0b9e77e7b /pkgs/applications/science/misc
parent432442eb8c983211d49fd96cd90d966f48a425a6 (diff)
downloadnixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.tar
nixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.tar.gz
nixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.tar.bz2
nixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.tar.lz
nixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.tar.xz
nixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.tar.zst
nixlib-e841dce44a2a3e02446b6d6c062cbf1c9f1cf8e9.zip
rink: fix strict deps build
Diffstat (limited to 'pkgs/applications/science/misc')
-rw-r--r--pkgs/applications/science/misc/rink/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/misc/rink/default.nix b/pkgs/applications/science/misc/rink/default.nix
index 1bb74ec17a34..839fc8f95463 100644
--- a/pkgs/applications/science/misc/rink/default.nix
+++ b/pkgs/applications/science/misc/rink/default.nix
@@ -16,8 +16,8 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "0shlh0m9k0iqxpv9zmiw7a6v197swrvpz9x6qzhximzkdwni9gz9";
 
-  buildInputs = [ pkgconfig ];
-  propagatedBuildInputs = [ openssl gmp ncurses ];
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ openssl gmp ncurses ];
 
   # Some tests fail and/or attempt to use internet servers.
   doCheck = false;