From bc55fb5aec65ccd8fb3662d5af307f224529bb16 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Thu, 3 Nov 2005 23:33:35 +0000 Subject: [PATCH] add binutilsArm here. First step to being able to manage cross compiler environments (such as uClibc) easily with Nix, instead of having to fiddle with your path all the time. This might be one killer app for Nix, but commit messages are not for describing those ideas :) svn path=/nixpkgs/trunk/; revision=4215 --- pkgs/system/all-packages-generic.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix index a0f77b005eb7..5cac9cac054b 100644 --- a/pkgs/system/all-packages-generic.nix +++ b/pkgs/system/all-packages-generic.nix @@ -303,6 +303,10 @@ rec { inherit fetchurl stdenv noSysDirs; }; + binutilsArm = (import ../development/tools/misc/binutils-arm) { + inherit fetchurl stdenv noSysDirs; + }; + patchelf = (import ../development/tools/misc/patchelf) { inherit fetchurl stdenv; };