grml-zsh-config: remove unecessary dependencies

The buildInputs that used to be here appear to have been put here in the
hope that they would be installed and made available automatically as a
result of installing this package, but that isn't how buildInputs work.

They could be provided by using substituteInPlace to point the package
towards the Nix versions of these packages, but since this is a shell
configuration, I think it makes more sense (and is easier) to use
whatever versions of those commands are available at runtime.
This commit is contained in:
Alyssa Ross 2019-01-07 01:32:53 +00:00
parent 28fe7e08af
commit 1032a46ffe

View File

@ -2,10 +2,6 @@
stdenv,
fetchFromGitHub,
lib,
zsh,
coreutils,
inetutils,
procps,
txt2tags,
}:
stdenv.mkDerivation rec {
@ -21,11 +17,6 @@ stdenv.mkDerivation rec {
strictDeps = true;
nativeBuildInputs = [ txt2tags ];
buildInputs = [
zsh
coreutils
procps
] ++ lib.optional stdenv.hostPlatform.isLinux inetutils;
buildPhase = ''
cd doc