forked from mirrors/nixpkgs
jxrlib: use python3
This commit is contained in:
parent
469f668769
commit
548c9c0daa
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub, python }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jxrlib";
|
||||
|
@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
|
|||
--replace '.so' '.dylib'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ python ];
|
||||
nativeBuildInputs = [ python3 ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
makeFlags = [ "DIR_INSTALL=$(out)" "SHARED=1" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue