summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-04-03 18:18:51 +0000
committerGitHub <noreply@github.com>2021-04-03 18:18:51 +0000
commit3bf92ca4db13995e8c7cc322f688874979736012 (patch)
tree67672140483be9e7acba8f9c2cdb509eef83db5f /pkgs/shells
parentbc845e51f007ada14202cd87874bb92fcfdaf526 (diff)
parentb5e8919e566d18ec4d6c2a6a2d698cc8f012f009 (diff)
downloadnixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.tar
nixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.tar.gz
nixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.tar.bz2
nixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.tar.lz
nixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.tar.xz
nixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.tar.zst
nixpkgs-3bf92ca4db13995e8c7cc322f688874979736012.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/ksh/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/shells/ksh/default.nix b/pkgs/shells/ksh/default.nix
index 822f1dc3491..cfd278aaca6 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 = ''