mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
603 B
Nix
23 lines
603 B
Nix
{ lib, buildGoPackage, fetchFromGitHub}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "mob";
|
|
version = "1.4.0";
|
|
goPackagePath = "github.com/remotemobprogramming/mob";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "remotemobprogramming";
|
|
repo = pname;
|
|
sha256 = "sha256-JiTRTH8ai27H1xySyKTWiu/MG0C61Tz+hVI6tkSRp+k=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|