Merge recent master into staging

Hydra: ?compare=1150594
This commit is contained in:
Vladimír Čunát
2014-09-06 16:51:14 +02:00
140 changed files with 5000 additions and 2572 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, fetchurl, kdelibs, kgraphviewer, gettext }:
stdenv.mkDerivation rec {
name = "massif-visualizer-${version}";
version = "0.3.90";
src = fetchurl {
url = "mirror://kde/unstable/massif-visualizer/${version}/src/${name}.tar.xz";
sha256 = "9940fa90137ca5eef08b9ec220825fadbf03db423a670a2c7fe3edab271d9922";
};
buildInputs = [ kdelibs kgraphviewer gettext ];
meta = with stdenv.lib; {
description = "Tool that visualizes massif data generated by valgrind";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
};
}

View File

@@ -12,15 +12,15 @@ let
optional = stdenv.lib.optional;
in
stdenv.mkDerivation rec {
name = "radare-1.5";
name = "radare-1.5.2";
src = fetchurl {
url = "http://radare.org/get/${name}.tar.gz";
sha256 = "1r0c9cc7z9likma8zicp2pbv2y85vjjmnk0k45wdhbvhgqh6il1h";
sha256 = "1qdrmcnzfvfvqb27c7pknwm8jl2hqa6c4l66wzyddwlb8yjm46hd";
};
buildInputs = [pkgconfig readline libusb libewf perl]
buildInputs = [pkgconfig readline libusb perl]
++ optional useX11 [gtkdialog vte gtk]
++ optional rubyBindings [ruby]
++ optional pythonBindings [python]

View File

@@ -0,0 +1,39 @@
{stdenv, fetchurl, pkgconfig, libusb, readline, libewf, perl, zlib, openssl,
gtk ? null, vte ? null, gtkdialog ? null,
python ? null,
ruby ? null,
lua ? null,
useX11, rubyBindings, pythonBindings, luaBindings}:
assert useX11 -> (gtk != null && vte != null && gtkdialog != null);
assert rubyBindings -> ruby != null;
assert pythonBindings -> python != null;
let
optional = stdenv.lib.optional;
in
stdenv.mkDerivation rec {
version = "0.9.7";
name = "radare2-${version}";
src = fetchurl {
url = "http://radare.org/get/${name}.tar.xz";
sha256 = "01sdsnbvx1qzyradj03sg24rk2bi9x58m40r0aqj8skv92c87s7l";
};
buildInputs = [pkgconfig readline libusb libewf perl zlib openssl]
++ optional useX11 [gtkdialog vte gtk]
++ optional rubyBindings [ruby]
++ optional pythonBindings [python]
++ optional luaBindings [lua];
meta = {
description = "Free advanced command line hexadecimal editor";
homepage = http://radare.org/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [raskin];
platforms = with stdenv.lib.platforms; linux;
inherit version;
};
}

View File

@@ -34,7 +34,7 @@ stdenv.mkDerivation {
variety of locations (git, hg, etc).
'';
platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.the-kenny ];
};
}

View File

@@ -2,6 +2,8 @@
, cross ? null, gold ? true, bison ? null
}:
assert !stdenv.isDarwin;
let basename = "binutils-2.23.1"; in
with { inherit (stdenv.lib) optional optionals optionalString; };