23 lines
603 B
Nix
23 lines
603 B
Nix
{ lib, buildGoPackage, fetchFromGitHub}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "mob";
|
|
version = "1.2.0";
|
|
goPackagePath = "github.com/remotemobprogramming/mob";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "remotemobprogramming";
|
|
repo = pname;
|
|
sha256 = "sha256-hBzSf3UUW2FUp1jG1sPt7vN1iDybdMox/h6xHVrM7DY=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool for swift git handover";
|
|
homepage = "https://github.com/remotemobprogramming/mob";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ericdallo ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|