3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/gede/default.nix

34 lines
751 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ctags, qt4, python }:
2017-02-26 21:27:31 +00:00
stdenv.mkDerivation rec {
name = "gede-${version}";
version = "2.0.3";
2017-02-26 21:27:31 +00:00
src = fetchurl {
url = "http://gede.acidron.com/uploads/source/${name}.tar.xz";
sha256 = "1znlmkjgrmjl79q73xaa9ybp1xdc3k4h4ynv3jj5z8f92gjnj3kk";
};
nativeBuildInputs = [ python ];
buildInputs = [ ctags 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"
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 ];
};
}