icestorm: fix eval
This commit is contained in:
parent
e4c0abd6d9
commit
a5b549e816
1 changed files with 4 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue