f3231c6ba4
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.0.0 with grep in /nix/store/bl1bdnjxn6k22is2w6qvdjl7kvhzjv2s-git-open-2.0.0 - directory tree listing: https://gist.github.com/7c26064e56c054ea6ba2b4d9162267cd
32 lines
843 B
Nix
32 lines
843 B
Nix
{stdenv, git, xdg_utils, gnugrep, fetchFromGitHub, makeWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "git-open-${version}";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paulirish";
|
|
repo = "git-open";
|
|
rev = "v${version}";
|
|
sha256 = "0lprzrjsqrg83gixfaiw26achgd8l7s56jknsjss4p7y0w1fxm05";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildPhase = null;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp git-open $out/bin
|
|
wrapProgram $out/bin/git-open \
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ git xdg_utils gnugrep ]}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/paulirish/git-open;
|
|
description = "Open the GitHub page or website for a repository in your browser";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.jlesquembre ];
|
|
};
|
|
}
|