icestorm: use libftdi1 rather than libftdi

This commit is contained in:
Emily 2019-09-02 18:45:03 +01:00 committed by Austin Seipp
parent c9625fa9ac
commit d13e64641d

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub
, pkgconfig, libftdi
, pkgconfig, libftdi1
, python3, pypy3
# PyPy yields large improvements in build time and runtime performance,
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ pythonPkg libftdi ];
buildInputs = [ pythonPkg libftdi1 ];
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;