summary refs log tree commit diff
path: root/pkgs/development/interpreters/lush
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-10-10 19:01:42 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-11-13 00:47:48 -0500
commitd7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410 (patch)
tree075aa2008d4bd95a79b8c63827284cc69764c58b /pkgs/development/interpreters/lush
parentf72bffb4c4178bf648bffff2a6692684f69551cd (diff)
downloadnixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.tar
nixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.tar.gz
nixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.tar.bz2
nixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.tar.lz
nixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.tar.xz
nixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.tar.zst
nixpkgs-d7bddc27b23da8ce7bc19cfeeeb0cbebdb5a4410.zip
treewide: Try to avoid depending on binutils directly
One should depend on

 - `stdenv.cc.bintools`: for executables at build time
 - `libbfd` or `libiberty`: for those libraries
 - `targetPackages.cc.bintools`: for exectuables at *run* time
 - `binutils`: only for specifically GNU Binutils's executables, regardless of
   the host platform, at run time.
Diffstat (limited to 'pkgs/development/interpreters/lush')
-rw-r--r--pkgs/development/interpreters/lush/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/lush/default.nix b/pkgs/development/interpreters/lush/default.nix
index a39e79badb6..6958bd2465f 100644
--- a/pkgs/development/interpreters/lush/default.nix
+++ b/pkgs/development/interpreters/lush/default.nix
@@ -1,5 +1,5 @@
 {stdenv, fetchurl, libX11, xproto, indent, readline, gsl, freeglut, mesa, SDL
-, blas, binutils, intltool, gettext, zlib, libSM}:
+, blas, libbfd, intltool, gettext, zlib, libSM}:
 
 stdenv.mkDerivation rec {
   baseName = "lush";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    libX11 libSM xproto indent readline gsl freeglut mesa SDL blas binutils
+    libX11 libSM xproto indent readline gsl freeglut mesa SDL blas libbfd
     intltool gettext zlib
   ];