ksh: use python3
This commit is contained in:
parent
90198ed989
commit
3502d57d7a
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, meson, ninja, fetchFromGitHub, which, python, fetchpatch
|
{ lib, stdenv, meson, ninja, fetchFromGitHub, which, python3, fetchpatch
|
||||||
, libiconv }:
|
, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -19,10 +19,12 @@ stdenv.mkDerivation rec {
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja which python ];
|
nativeBuildInputs = [ meson ninja which python3 ];
|
||||||
|
|
||||||
buildInputs = [ libiconv ];
|
buildInputs = [ libiconv ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "KornShell Command And Programming Language";
|
description = "KornShell Command And Programming Language";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in New Issue