Skip to content

Commit

Permalink
pydb, libclc: fixup eval after pinning to python2
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Feb 9, 2017
1 parent 6bea415 commit 5efc5a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libclc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stdenv.mkDerivation {
'';

configurePhase = ''
${python.interpreter} ./configure.py --prefix=$out
${python2.interpreter} ./configure.py --prefix=$out
'';

meta = with stdenv.lib; {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/tools/pydb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5efc5a4

Please sign in to comment.