1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4 pname = "agdsn-zsh-config";
7 src = fetchFromGitHub {
9 repo = "agdsn-zsh-config";
11 sha256 = "sha256-8POQPk/hsJBMJ/ZJe9XzVj7Rd7C2+QnpzgYbUR0s3Fc=";
19 install -D -m644 zshrc-base-hw.zsh "$out/etc/zsh/zshrc"
20 install -D -m644 zshrc-home.zsh "$out/etc/skel/.zshrc"
21 install -D -m644 zshrc-home.zsh "$out/etc/zsh/newuser.zshrc.recommended"
22 install -D -m644 profile-d-agdsn-zsh-config.sh "$out/etc/profile.d/agdsn-zsh-config.sh"
28 description = "Modified version of the Grml Zsh configuration specialised for the needs of system administration";
29 homepage = "https://github.com/agdsn/agdsn-zsh-config";
30 license = licenses.gpl2Plus;
31 platforms = platforms.unix;
32 maintainers = with maintainers; [ fugi ];