30 lines
780 B
Nix
30 lines
780 B
Nix
|
{stdenv, fetchFromGitHub}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "git-radar";
|
||
|
version = "0.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "michaeldfallen";
|
||
|
repo = "git-radar";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0c3zp8s4w7m4s71qgwk1jyfc8yzw34f2hi43x1w437ypgabwg81j";
|
||
|
};
|
||
|
|
||
|
dontBuild = true;
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
cp git-radar fetch.sh prompt.bash prompt.zsh radar-base.sh $out
|
||
|
ln -s $out/git-radar $out/bin
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/michaeldfallen/git-radar";
|
||
|
license = licenses.mit;
|
||
|
description = "A tool you can add to your prompt to provide at-a-glance information on your git repo";
|
||
|
platforms = with platforms; linux ++ darwin;
|
||
|
maintainers = with maintainers; [ kamilchm ];
|
||
|
};
|
||
|
}
|