zsh-you-should-use: 1.7.3 -> 1.7.4
[NixPkgs.git] / pkgs / shells / zsh / zsh-you-should-use / default.nix
blobbe89f60d8927ce3fe05273f28a34a30e279cea09
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "zsh-you-should-use";
5   version = "1.7.4";
7   src = fetchFromGitHub {
8     owner = "MichaelAquilina";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-Jl3wZa/WIA+GtkUiCn0vKfd6N/GitOavwZ+uqfmzdps=";
12   };
14   strictDeps = true;
15   dontBuild = true;
17   installPhase = ''
18     install -D you-should-use.plugin.zsh $out/share/zsh/plugins/you-should-use/you-should-use.plugin.zsh
19   '';
21   meta = with lib; {
22     homepage = "https://github.com/MichaelAquilina/zsh-you-should-use";
23     license = licenses.gpl3;
24     description = "ZSH plugin that reminds you to use existing aliases for commands you just typed";
25     maintainers = with maintainers; [ ];
26   };