2021-03-25 13:45:18 +00:00
|
|
|
{ mkDerivation, lib, fetchurl, makeWrapper, python3, qmake, ctags, gdb }:
|
2017-02-26 21:27:31 +00:00
|
|
|
|
2020-01-08 10:48:01 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gede";
|
2021-01-25 12:59:24 +00:00
|
|
|
version = "2.17.1";
|
2017-07-01 19:54:36 +01:00
|
|
|
|
2017-02-26 21:27:31 +00:00
|
|
|
src = fetchurl {
|
2021-01-25 12:59:24 +00:00
|
|
|
url = "http://gede.dexar.se/uploads/source/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0hbsy2ymzgl8xd9mnh43gxdfncy7g6czxfvfyh7zp3ij8yiwf8x3";
|
2017-02-26 21:27:31 +00:00
|
|
|
};
|
|
|
|
|
2021-03-25 13:45:18 +00:00
|
|
|
nativeBuildInputs = [ qmake makeWrapper python3 ];
|
2017-07-01 19:54:36 +01:00
|
|
|
|
2018-04-19 21:58:21 +01:00
|
|
|
buildInputs = [ ctags ];
|
|
|
|
|
2021-03-25 13:45:18 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2018-04-19 21:58:21 +01:00
|
|
|
dontUseQmakeConfigure = true;
|
2017-07-01 19:54:16 +01:00
|
|
|
|
2021-07-18 22:42:48 +01:00
|
|
|
dontBuild = true;
|
2017-07-01 19:54:36 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-04-19 18:55:36 +01:00
|
|
|
python build.py install --verbose --prefix="$out"
|
2017-07-01 20:19:49 +01:00
|
|
|
wrapProgram $out/bin/gede \
|
2021-01-21 00:55:55 +00:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ ctags gdb ]}
|
2017-02-26 21:27:31 +00:00
|
|
|
'';
|
|
|
|
|
2020-01-08 10:48:01 +00:00
|
|
|
meta = with lib; {
|
2017-02-26 21:27:31 +00:00
|
|
|
description = "Graphical frontend (GUI) to GDB";
|
2021-01-25 12:59:24 +00:00
|
|
|
homepage = "http://gede.dexar.se";
|
2017-02-26 21:27:31 +00:00
|
|
|
license = licenses.bsd2;
|
2018-09-03 22:24:38 +01:00
|
|
|
platforms = platforms.linux;
|
2017-02-26 21:27:31 +00:00
|
|
|
maintainers = with maintainers; [ juliendehos ];
|
|
|
|
};
|
|
|
|
}
|