about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-08-18 13:01:45 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-08-18 13:01:45 +0200
commitc7bf103599fcc6d6f658693b02503c5f7b25d33d (patch)
tree27565fa12d8ce89543758339f2d60e3d8f7f75ea
parentf65aa21bb2b0a45ac671e8c9d656b1dfc88cda33 (diff)
downloadnixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.tar
nixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.tar.gz
nixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.tar.bz2
nixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.tar.lz
nixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.tar.xz
nixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.tar.zst
nixlib-c7bf103599fcc6d6f658693b02503c5f7b25d33d.zip
icestorm: fix eval
-rw-r--r--pkgs/development/tools/icestorm/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/icestorm/default.nix b/pkgs/development/tools/icestorm/default.nix
index b7b302fe08cf..851acd17b7ea 100644
--- a/pkgs/development/tools/icestorm/default.nix
+++ b/pkgs/development/tools/icestorm/default.nix
@@ -9,13 +9,13 @@
 , usePyPy ? stdenv.isx86_64 /* pypy3 seems broken on i686 */
 }:
 
-let
-  pythonPkg = if usePyPy then pypy3 else python3;
-  pythonInterp = pythonPkg.interpreter;
-in stdenv.mkDerivation rec {
+stdenv.mkDerivation rec {
   pname = "icestorm";
   version = "2019.08.08";
 
+  pythonPkg = if usePyPy then pypy3 else python3;
+  pythonInterp = pythonPkg.interpreter;
+
   src = fetchFromGitHub {
     owner  = "cliffordwolf";
     repo   = "icestorm";