Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / shells / zsh / grml-zsh-config / default.nix
blobed7e81fd88d60c61747cc2b6114717f9ec2feeca
1 { stdenv, fetchFromGitHub, lib
2 , zsh, coreutils, inetutils, procps, txt2tags }:
4 with lib;
6 stdenv.mkDerivation rec {
7   pname = "grml-zsh-config";
8   version = "0.19.7";
10   src = fetchFromGitHub {
11     owner = "grml";
12     repo = "grml-etc-core";
13     rev = "v${version}";
14     sha256 = "sha256-XHuoafb1Wc8dUPrk/7jwYhlRQm76qcbQy2vHECm0Iuo=";
15   };
17   strictDeps = true;
18   nativeBuildInputs = [ txt2tags ];
19   buildInputs = [ zsh coreutils procps ]
20     ++ optional stdenv.isLinux inetutils;
22   buildPhase = ''
23     cd doc
24     make
25     cd ..
26   '';
28   installPhase = ''
29     install -D -m644 etc/zsh/keephack $out/etc/zsh/keephack
30     install -D -m644 etc/zsh/zshrc $out/etc/zsh/zshrc
32     install -D -m644 doc/grmlzshrc.5 $out/share/man/man5/grmlzshrc.5
33     ln -s grmlzshrc.5.gz $out/share/man/man5/grml-zsh-config.5.gz
34   '';
36   meta = with lib; {
37     description = "grml's zsh setup";
38     homepage = "https://grml.org/zsh/";
39     license = with licenses; [ gpl2Plus gpl2Only ];
40     platforms = platforms.unix;
41     maintainers = with maintainers; [ msteen rvolosatovs ];
42   };