Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / shells / zsh / zsh-deer / default.nix
blob0d3a6bc9ee61a4952adb56f5392d4435a3e2e8c2
1 { lib, stdenv, fetchFromGitHub, perl }:
3 stdenv.mkDerivation rec {
4   pname = "deer";
5   version = "1.4";
7   src = fetchFromGitHub {
8     owner = "Vifon";
9     repo = "deer";
10     rev = "v${version}";
11     sha256 = "1xnbnbi0zk2xsyn8dqsmyxqlfnl36pb1wwibnlp0dxixw6sfymyl";
12   };
14   strictDeps = true;
16   prePatch = ''
17     substituteInPlace deer \
18       --replace " perl " " ${perl}/bin/perl "
19   '';
21   patches = [ ./realpath.patch ];
23   installPhase = ''
24     mkdir -p $out/share/zsh/site-functions/
25     cp deer $out/share/zsh/site-functions/
26   '';
28   meta = with lib; {
29     description = "Ranger-like file navigation for zsh";
30     homepage = "https://github.com/Vifon/deer";
31     license = licenses.gpl3Plus;
32     maintainers = [ maintainers.vyp ];
33     platforms = platforms.unix;
34   };