mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 03:43:53 +03:00
grml-zsh-config: generalize support to unix systems
This commit is contained in:
parent
d52eaf878c
commit
9280937cd4
@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1xvv2mnkfqa657w8y4q2zrchhindngdzij9fbalcg1gggz4zdwcm";
|
||||
};
|
||||
|
||||
buildInputs = [ zsh coreutils inetutils procps txt2tags ];
|
||||
buildInputs = [ zsh coreutils txt2tags ]
|
||||
++ optional stdenv.isLinux [ inetutils procps ];
|
||||
|
||||
buildPhase = ''
|
||||
cd doc
|
||||
@ -34,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
description = "grml's zsh setup";
|
||||
homepage = http://grml.org/zsh/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ msteen rvolosatovs ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user