nixpkgs-suyu/pkgs/applications/misc/mob/default.nix

23 lines
604 B
Nix
Raw Normal View History

2020-08-31 19:46:25 +02:00
{ lib, buildGoPackage, fetchFromGitHub}:
buildGoPackage rec {
pname = "mob";
2021-09-14 19:01:10 +02:00
version = "1.12.0";
2020-08-31 19:46:25 +02:00
goPackagePath = "github.com/remotemobprogramming/mob";
src = fetchFromGitHub {
rev = "v${version}";
owner = "remotemobprogramming";
repo = pname;
2021-09-14 19:01:10 +02:00
sha256 = "sha256-5hvuaKlaWrB8nEeHytnn4ywciLbOSoXdBdc3K/PqMG8=";
2020-08-31 19:46:25 +02:00
};
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;
};
}