summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-01-24 08:47:46 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-01-24 08:47:46 +0200
commitf62dbc01210286d25b7e4814d3897b4b73fcf0d5 (patch)
treea3ab20726c76342520bf301ae6327ea64f94d8bc /pkgs/development
parent421989fb5a5a3eb19a569cb0502a40572b3b1686 (diff)
downloadnixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.tar
nixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.tar.gz
nixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.tar.bz2
nixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.tar.lz
nixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.tar.xz
nixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.tar.zst
nixpkgs-f62dbc01210286d25b7e4814d3897b4b73fcf0d5.zip
binutils: Add platforms
There are some variants of binutils in all-packages.nix that aren't
getting built by Hydra currently.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/binutils/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix
index 61824eb607b..4cc4cadc280 100644
--- a/pkgs/development/tools/misc/binutils/default.nix
+++ b/pkgs/development/tools/misc/binutils/default.nix
@@ -69,17 +69,15 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Tools for manipulating binaries (linker, assembler, etc.)";
-
     longDescription = ''
       The GNU Binutils are a collection of binary tools.  The main
       ones are `ld' (the GNU linker) and `as' (the GNU assembler).
       They also include the BFD (Binary File Descriptor) library,
       `gprof', `nm', `strip', etc.
     '';
-
     homepage = http://www.gnu.org/software/binutils/;
-
     license = stdenv.lib.licenses.gpl3Plus;
+    platforms = stdenv.lib.platforms.linux;
 
     /* Give binutils a lower priority than gcc-wrapper to prevent a
        collision due to the ld/as wrappers/symlinks in the latter. */