mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
96c0c07ca0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gede/versions
34 lines
854 B
Nix
34 lines
854 B
Nix
{ stdenv, fetchurl, makeWrapper, python, qmake, ctags, gdb }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gede-${version}";
|
|
version = "2.12.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://gede.acidron.com/uploads/source/${name}.tar.xz";
|
|
sha256 = "041wvby19dlcbb7x3yn2mbcfkrn0pkyjpgm40ngsks63kqzmkpdp";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake makeWrapper python ];
|
|
|
|
buildInputs = [ ctags ];
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
buildPhase = ":";
|
|
|
|
installPhase = ''
|
|
python build.py install --verbose --prefix="$out"
|
|
wrapProgram $out/bin/gede \
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ ctags gdb ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Graphical frontend (GUI) to GDB";
|
|
homepage = http://gede.acidron.com;
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ juliendehos ];
|
|
};
|
|
}
|