Unverified Commit 7d3e4592 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files
parent 1eb9b573
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -2,20 +2,20 @@

buildFishPlugin rec {
  pname = "plugin-git";
  version = "0.2";
  version = "0.3";

  src = fetchFromGitHub {
    owner = "jhillyerd";
    repo = "plugin-git";
    rev = "refs/tags/v${version}";
    hash = "sha256-DQLRat7uGoK57g/1x9Y514gtjvDdf9j4Iqnwif8QWVU=";
    hash = "sha256-p7vvwisu3mvVOE1DcALbzuGJqWBcE1h71UjaopGdxE0=";
  };

  meta = with lib; {
  meta = {
    description = "Git plugin for fish (similar to oh-my-zsh git)";
    homepage = "https://github.com/jhillyerd/plugin-git";
    changelog = "https://github.com/jhillyerd/plugin-git/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ GaetanLepage unsolvedcypher ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage unsolvedcypher ];
  };
}