git-open: 2.1.0 -> 3.0.0, drop inactive maintainer, remove git from the wrapper

git-open is supposed to be used as a git subcommand like `git open`
which requires git to function. This makes using overrides easier and
reduces useless rebuilds.

+5 -5
+5 -5
pkgs/applications/version-management/git-open/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "git-open"; 5 - version = "2.1.0"; 5 + version = "3.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "paulirish"; 9 9 repo = "git-open"; 10 10 rev = "v${version}"; 11 - sha256 = "11n46bngvca5wbdbfcxzjhjbfdbad7sgf7h9gf956cb1q8swsdm0"; 11 + sha256 = "sha256-Bag2rI2uR7ilkg2ozjR8tPXqKz5XjiY7WAUJKTVTXd8="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ installShellFiles makeWrapper pandoc ]; ··· 23 23 24 24 installPhase = '' 25 25 mkdir -p $out/bin 26 - cp git-open $out/bin 26 + mv git-open $out/bin 27 27 installManPage git-open.1 28 28 wrapProgram $out/bin/git-open \ 29 - --prefix PATH : "${lib.makeBinPath [ git gnugrep ]}" \ 29 + --prefix PATH : "${lib.makeBinPath [ gnugrep ]}" \ 30 30 --suffix PATH : "${lib.makeBinPath [ xdg-utils ]}" 31 31 ''; 32 32 ··· 35 35 description = "Open the GitHub page or website for a repository in your browser"; 36 36 license = licenses.mit; 37 37 platforms = platforms.all; 38 - maintainers = with maintainers; [ jlesquembre SuperSandro2000 ]; 38 + maintainers = with maintainers; [ SuperSandro2000 ]; 39 39 }; 40 40 }