36 lines
866 B
Nix
36 lines
866 B
Nix
{ mkDerivation, lib, fetchurl, makeWrapper, python3, qmake, ctags, gdb }:
|
|
|
|
mkDerivation rec {
|
|
pname = "gede";
|
|
version = "2.17.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://gede.dexar.se/uploads/source/${pname}-${version}.tar.xz";
|
|
sha256 = "0hbsy2ymzgl8xd9mnh43gxdfncy7g6czxfvfyh7zp3ij8yiwf8x3";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake makeWrapper python3 ];
|
|
|
|
buildInputs = [ ctags ];
|
|
|
|
strictDeps = true;
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
buildPhase = ":";
|
|
|
|
installPhase = ''
|
|
python build.py install --verbose --prefix="$out"
|
|
wrapProgram $out/bin/gede \
|
|
--prefix PATH : ${lib.makeBinPath [ ctags gdb ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Graphical frontend (GUI) to GDB";
|
|
homepage = "http://gede.dexar.se";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ juliendehos ];
|
|
};
|
|
}
|