about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-05 23:48:35 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-05 23:48:35 +0000
commit697266261bb71030025ce45558136346b580f93e (patch)
tree1b21d20784a10e835ab65b1b6ec557af5260932a /pkgs/development/tools/analysis
parentd213d290a6c65cd47982afe99388c421c5e2e639 (diff)
Updating radare, and trying to build it in more platforms.
svn path=/nixpkgs/trunk/; revision=20447
Diffstat (limited to 'pkgs/development/tools/analysis')
-rw-r--r--pkgs/development/tools/analysis/radare/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/tools/analysis/radare/default.nix b/pkgs/development/tools/analysis/radare/default.nix
index dfbe1e542f9d8..d549bd8fb1981 100644
--- a/pkgs/development/tools/analysis/radare/default.nix
+++ b/pkgs/development/tools/analysis/radare/default.nix
@@ -11,13 +11,12 @@ assert pythonBindings -> python != null;
 let 
   optional = stdenv.lib.optional;
 in
-stdenv.mkDerivation 
-{
-  name = "radare-1.4.2";
+stdenv.mkDerivation rec {
+  name = "radare-1.5";
 
   src = fetchurl {
-    url = http://radare.org/get/radare-1.4.2.tar.gz;
-    sha256 = "09pai3k4x3kzq7zjfd8425jjb16fpximrhp5wyy6pwgdc82q30sd";
+    url = "http://radare.org/get/${name}.tar.gz";
+    sha256 = "1r0c9cc7z9likma8zicp2pbv2y85vjjmnk0k45wdhbvhgqh6il1h";
   };
 
 
@@ -32,6 +31,6 @@ stdenv.mkDerivation
     homepage = http://radare.org/;
     license = "GPLv2+";
     maintainers = with stdenv.lib.maintainers; [viric];
-    platforms = with stdenv.lib.platforms; linux;
+    platforms = with stdenv.lib.platforms; all;
   };
 }