mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
libpoly: use python3
This commit is contained in:
parent
24d008a9f4
commit
d20a05e963
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{lib, stdenv, fetchFromGitHub, gmp, cmake, python}:
|
||||
{lib, stdenv, fetchFromGitHub, gmp, cmake, python3}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libpoly";
|
||||
|
@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ gmp python ];
|
||||
buildInputs = [ gmp python3 ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/SRI-CSL/libpoly";
|
||||
|
|
Loading…
Reference in a new issue