diff options
author | Frederik Rietdijk <fridh@fridh.nl> | 2021-03-26 10:34:04 +0100 |
---|---|---|
committer | Frederik Rietdijk <fridh@fridh.nl> | 2021-04-03 17:06:21 +0200 |
commit | 3502d57d7a48098bafcafe9645c338b32b06a2bb (patch) | |
tree | 24f5ada7728faf8611c9e31f8aa54451b3132b1b /pkgs/shells/ksh | |
parent | 90198ed989b23ca4f38e7f1c47e00f9b720fc772 (diff) |
ksh: use python3
Diffstat (limited to 'pkgs/shells/ksh')
-rw-r--r-- | pkgs/shells/ksh/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/shells/ksh/default.nix b/pkgs/shells/ksh/default.nix index 822f1dc3491b1..cfd278aaca65d 100644 --- a/pkgs/shells/ksh/default.nix +++ b/pkgs/shells/ksh/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, meson, ninja, fetchFromGitHub, which, python, fetchpatch +{ lib, stdenv, meson, ninja, fetchFromGitHub, which, python3, fetchpatch , libiconv }: stdenv.mkDerivation rec { @@ -19,10 +19,12 @@ stdenv.mkDerivation rec { }) ]; - nativeBuildInputs = [ meson ninja which python ]; + nativeBuildInputs = [ meson ninja which python3 ]; buildInputs = [ libiconv ]; + strictDeps = true; + meta = with lib; { description = "KornShell Command And Programming Language"; longDescription = '' |