lol
0
fork

Configure Feed

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

at 22.05-pre 29 lines 653 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 pname = "git-my"; 5 version = "1.1.2"; 6 7 src = fetchFromGitHub { 8 owner = "davidosomething"; 9 repo = "git-my"; 10 rev = version; 11 sha256 = "0jji5zw25jygj7g4f6f3k0p0s9g37r8iad8pa0s67cxbq2v4sc0v"; 12 }; 13 14 dontBuild = true; 15 16 installPhase = '' 17 install -Dm755 -t "$out"/bin ./git-my 18 ''; 19 20 meta = with lib; { 21 description = 22 "List remote branches if they're merged and/or available locally"; 23 homepage = "https://github.com/davidosomething/git-my"; 24 license = licenses.free; 25 maintainers = with maintainers; [ bb010g ]; 26 platforms = platforms.all; 27 }; 28} 29