icestorm: minor cleanup with pythonPkg.interpreter [NFC]
Suggested cleanup by @dotlambda. See:
18839e1cc1 (commitcomment-31917295)
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
497e6f1705
commit
8b5e6b7711
|
@ -6,7 +6,7 @@
|
||||||
let
|
let
|
||||||
pypyCompatible = stdenv.isx86_64; /* pypy3 seems broken on i686 */
|
pypyCompatible = stdenv.isx86_64; /* pypy3 seems broken on i686 */
|
||||||
pythonPkg = if pypyCompatible then pypy3 else python3;
|
pythonPkg = if pypyCompatible then pypy3 else python3;
|
||||||
pythonInterp = if pypyCompatible then "pypy3" else "python3";
|
pythonInterp = pythonPkg.interpreter;
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
for x in $(find . -type f -iname '*.py'); do
|
for x in $(find . -type f -iname '*.py'); do
|
||||||
substituteInPlace "$x" \
|
substituteInPlace "$x" \
|
||||||
--replace '/usr/bin/env python3' '${pythonPkg}/bin/${pythonInterp}'
|
--replace '/usr/bin/env python3' '${pythonInterp}'
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue