nixpkgs/pkgs/development/tools/misc/gede/default.nix

36 lines
869 B
Nix
Raw Normal View History

{ stdenv, fetchurl, makeWrapper, python, qt4, ctags, gdb }:
2017-02-26 21:27:31 +00:00
stdenv.mkDerivation rec {
name = "gede-${version}";
2017-07-01 20:23:38 +01:00
version = "2.0.4";
2017-02-26 21:27:31 +00:00
src = fetchurl {
url = "http://gede.acidron.com/uploads/source/${name}.tar.xz";
2017-07-01 20:23:38 +01:00
sha256 = "0ip86ss35sc330p4aykv5qj74jbdwh38i928w1bxb6g3w0xmfqba";
2017-02-26 21:27:31 +00:00
};
nativeBuildInputs = [ makeWrapper python ];
buildInputs = [ qt4 ];
postPatch = ''
sed -i build.py -e 's,qmake-qt4,qmake,'
'';
2017-02-26 21:27:31 +00:00
buildPhase = ":";
installPhase = ''
python build.py install --prefix="$out"
wrapProgram $out/bin/gede \
--prefix PATH : ${stdenv.lib.makeBinPath [ ctags gdb ]}
2017-02-26 21:27:31 +00:00
'';
meta = with stdenv.lib; {
description = "Graphical frontend (GUI) to GDB";
homepage = "http://gede.acidron.com";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ juliendehos ];
};
}