pydb, libclc: fixup eval after pinning to python2

wip/yesman
Vladimír Čunát 7 years ago
parent 6bea415b5e
commit 5efc5a4ede
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 2
      pkgs/development/libraries/libclc/default.nix
  2. 4
      pkgs/development/tools/pydb/default.nix

@ -18,7 +18,7 @@ stdenv.mkDerivation {
'';
configurePhase = ''
${python.interpreter} ./configure.py --prefix=$out
${python2.interpreter} ./configure.py --prefix=$out
'';
meta = with stdenv.lib; {

@ -12,10 +12,10 @@ stdenv.mkDerivation {
preConfigure = ''
p="$(toPythonPath $out)"
configureFlags="$configureFlags --with-python=${python.interpreter} --with-site-packages=$p"
configureFlags="$configureFlags --with-python=${python2.interpreter} --with-site-packages=$p"
'';
meta = {
meta = {
description = "Python debugger with GDB-like commands and Emacs bindings";
homepage = http://bashdb.sourceforge.net/pydb/;
license = stdenv.lib.licenses.gpl3;

Loading…
Cancel
Save