43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, python27Packages, gdb, pkgs }:
|
|
let
|
|
deps = import ./requirements.nix { inherit pkgs; };
|
|
in
|
|
python27Packages.buildPythonApplication rec {
|
|
pname = "gdbgui";
|
|
version = "0.13.0.0";
|
|
|
|
buildInputs = [ gdb ];
|
|
propagatedBuildInputs = builtins.attrValues deps.packages;
|
|
|
|
src = python27Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16a46kabhfqsgsks5l25kpgrvrkdah3h5f5m6ams2z9nzbrxl8bz";
|
|
};
|
|
|
|
postPatch = ''
|
|
echo ${version} > gdbgui/VERSION.txt
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/gdbgui \
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ gdb ]}
|
|
'';
|
|
|
|
# make /etc/protocols accessible to fix socket.getprotobyname('tcp') in sandbox
|
|
preCheck = stdenv.lib.optionalString stdenv.isLinux ''
|
|
export NIX_REDIRECTS=/etc/protocols=${pkgs.iana-etc}/etc/protocols \
|
|
LD_PRELOAD=${pkgs.libredirect}/lib/libredirect.so
|
|
'';
|
|
|
|
postCheck = stdenv.lib.optionalString stdenv.isLinux ''
|
|
unset NIX_REDIRECTS LD_PRELOAD
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A browser-based frontend for GDB";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ yrashk ];
|
|
};
|
|
}
|