lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 30 lines 809 B view raw
1{lib, stdenv, fetchFromGitHub}: 2 3stdenv.mkDerivation rec { 4 pname = "git-radar"; 5 version = "0.6"; 6 7 src = fetchFromGitHub { 8 owner = "michaeldfallen"; 9 repo = "git-radar"; 10 rev = "v${version}"; 11 sha256 = "0c3zp8s4w7m4s71qgwk1jyfc8yzw34f2hi43x1w437ypgabwg81j"; 12 }; 13 14 dontBuild = true; 15 16 installPhase = '' 17 mkdir -p $out/bin 18 cp git-radar fetch.sh prompt.bash prompt.zsh radar-base.sh $out 19 ln -s $out/git-radar $out/bin 20 ''; 21 22 meta = with lib; { 23 homepage = "https://github.com/michaeldfallen/git-radar"; 24 license = licenses.mit; 25 description = "A tool you can add to your prompt to provide at-a-glance information on your git repo"; 26 platforms = with platforms; linux ++ darwin; 27 maintainers = with maintainers; [ kamilchm ]; 28 mainProgram = "git-radar"; 29 }; 30}