summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2016-01-24 23:12:14 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2016-01-24 23:12:14 +0300
commitd6d22151fa1e1249c1821a70a1ff2cfb719b89d9 (patch)
treefa23aeb8b8dc300ac3413ad536dbbe834e07309e /pkgs/development
parentafba955d2192acfa5219560386fb92366ac65dab (diff)
parentf62dbc01210286d25b7e4814d3897b4b73fcf0d5 (diff)
downloadnixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.tar
nixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.tar.gz
nixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.tar.bz2
nixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.tar.lz
nixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.tar.xz
nixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.tar.zst
nixpkgs-d6d22151fa1e1249c1821a70a1ff2cfb719b89d9.zip
Merge pull request #12588 from dezgeg/pr-binutils-platforms
binutils: Add platforms
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. */