nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ksh: use python3

+4 -2
+4 -2
pkgs/shells/ksh/default.nix
··· 1 - { lib, stdenv, meson, ninja, fetchFromGitHub, which, python, fetchpatch 1 + { lib, stdenv, meson, ninja, fetchFromGitHub, which, python3, fetchpatch 2 2 , libiconv }: 3 3 4 4 stdenv.mkDerivation rec { ··· 19 19 }) 20 20 ]; 21 21 22 - nativeBuildInputs = [ meson ninja which python ]; 22 + nativeBuildInputs = [ meson ninja which python3 ]; 23 23 24 24 buildInputs = [ libiconv ]; 25 + 26 + strictDeps = true; 25 27 26 28 meta = with lib; { 27 29 description = "KornShell Command And Programming Language";