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

23 lines
603 B
Nix
Raw Normal View History

2020-08-31 17:46:25 +00:00
{ lib, buildGoPackage, fetchFromGitHub}:
buildGoPackage rec {
pname = "mob";
2021-02-03 17:19:07 +00:00
version = "1.2.0";
2020-08-31 17:46:25 +00:00
goPackagePath = "github.com/remotemobprogramming/mob";
src = fetchFromGitHub {
rev = "v${version}";
owner = "remotemobprogramming";
repo = pname;
2021-02-03 17:19:07 +00:00
sha256 = "sha256-hBzSf3UUW2FUp1jG1sPt7vN1iDybdMox/h6xHVrM7DY=";
2020-08-31 17:46:25 +00: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;
};
}