gede: fix sandboxed build

build.py relies on /usr/bin/env; invoke python directly instead to
sidestep the issue.
This commit is contained in:
Joachim Fasting 2017-07-01 20:54:36 +02:00
parent 6e36e7f209
commit 4f320d30a4
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -1,27 +1,27 @@
{ stdenv, fetchurl, ctags, qt4, python }: { stdenv, fetchurl, ctags, qt4, python }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2.0.3";
name = "gede-${version}"; name = "gede-${version}";
version = "2.0.3";
src = fetchurl { src = fetchurl {
url = "http://gede.acidron.com/uploads/source/${name}.tar.xz"; url = "http://gede.acidron.com/uploads/source/${name}.tar.xz";
sha256 = "1znlmkjgrmjl79q73xaa9ybp1xdc3k4h4ynv3jj5z8f92gjnj3kk"; sha256 = "1znlmkjgrmjl79q73xaa9ybp1xdc3k4h4ynv3jj5z8f92gjnj3kk";
}; };
buildInputs = [ ctags qt4 python ]; nativeBuildInputs = [ python ];
buildInputs = [ ctags qt4 ];
postPatch = '' postPatch = ''
sed -i build.py -e 's,qmake-qt4,qmake,' sed -i build.py -e 's,qmake-qt4,qmake,'
''; '';
unpackPhase = '' buildPhase = ":";
tar xf ${src}
cd ${name} installPhase = ''
python build.py install --prefix="$out"
''; '';
configurePhase = "";
buildPhase = "";
installPhase = "./build.py install --prefix=$out";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Graphical frontend (GUI) to GDB"; description = "Graphical frontend (GUI) to GDB";
@ -31,4 +31,3 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ juliendehos ]; maintainers = with maintainers; [ juliendehos ];
}; };
} }