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

34 lines
856 B
Nix
Raw Normal View History

2018-04-19 20:58:21 +00:00
{ stdenv, fetchurl, makeWrapper, python, qmake, ctags, gdb }:
2017-02-26 21:27:31 +00:00
stdenv.mkDerivation rec {
pname = "gede";
version = "2.14.1";
2017-02-26 21:27:31 +00:00
src = fetchurl {
url = "http://gede.acidron.com/uploads/source/${pname}-${version}.tar.xz";
sha256 = "1z7577zwz7h03d58as93hyx99isi3p4i3rhxr8l01zgi65mz0mr9";
2017-02-26 21:27:31 +00:00
};
2018-04-19 20:58:21 +00:00
nativeBuildInputs = [ qmake makeWrapper python ];
2018-04-19 20:58:21 +00:00
buildInputs = [ ctags ];
dontUseQmakeConfigure = true;
buildPhase = ":";
installPhase = ''
python build.py install --verbose --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;
2017-02-26 21:27:31 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
2017-02-26 21:27:31 +00:00
maintainers = with maintainers; [ juliendehos ];
};
}