lol

Merge pull request #28814 from loskutov/grml-zsh-unix

grml-zsh-config: generalize support to unix systems

authored by

Jörg Thalheim and committed by
GitHub
7b6251b4 84f52d20

+3 -2
+3 -2
pkgs/shells/grml-zsh-config/default.nix
··· 14 14 sha256 = "1xvv2mnkfqa657w8y4q2zrchhindngdzij9fbalcg1gggz4zdwcm"; 15 15 }; 16 16 17 - buildInputs = [ zsh coreutils inetutils procps txt2tags ]; 17 + buildInputs = [ zsh coreutils txt2tags ] 18 + ++ optional stdenv.isLinux [ inetutils procps ]; 18 19 19 20 buildPhase = '' 20 21 cd doc ··· 34 35 description = "grml's zsh setup"; 35 36 homepage = http://grml.org/zsh/; 36 37 license = licenses.gpl2; 37 - platforms = platforms.linux; 38 + platforms = platforms.unix; 38 39 maintainers = with maintainers; [ msteen rvolosatovs ]; 39 40 }; 40 41 }