8 stdenv.mkDerivation (finalAttrs: {
12 src = fetchFromGitHub {
13 owner = "davidosomething";
15 rev = finalAttrs.version;
16 hash = "sha256-GzBNtsCrs2M0UBc1FVE+4yUNLpjDGUfekc/LIvgvUUo=";
19 buildInputs = [ bash ];
26 install -Dm 755 -t "$out/bin" -- git-my
32 description = "List remote branches if they're merged and/or available locally";
33 homepage = "https://github.com/davidosomething/git-my";
34 license = lib.licenses.free;
36 platforms = lib.platforms.all;
37 mainProgram = "git-my";