nixpkgs/pkgs/applications/misc/mob/default.nix
2021-09-14 17:01:10 +00:00

23 lines
604 B
Nix

{ lib, buildGoPackage, fetchFromGitHub}:
buildGoPackage rec {
pname = "mob";
version = "1.12.0";
goPackagePath = "github.com/remotemobprogramming/mob";
src = fetchFromGitHub {
rev = "v${version}";
owner = "remotemobprogramming";
repo = pname;
sha256 = "sha256-5hvuaKlaWrB8nEeHytnn4ywciLbOSoXdBdc3K/PqMG8=";
};
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;
};
}