mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
40 lines
858 B
Nix
40 lines
858 B
Nix
{ lib
|
|
, buildGoPackage
|
|
, fetchFromGitHub
|
|
|
|
, withSpeech ? true
|
|
, makeWrapper
|
|
, espeak-ng
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "mob";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "remotemobprogramming";
|
|
repo = pname;
|
|
sha256 = "sha256-nf0FSaUi8qX1f4Luo0cP4ZLoOKbyvgmpilMOWXbzzIM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
goPackagePath = "github.com/remotemobprogramming/mob";
|
|
|
|
preFixup = lib.optionalString withSpeech ''
|
|
wrapProgram $out/bin/mob \
|
|
--set MOB_VOICE_COMMAND "${lib.getBin espeak-ng}/bin/espeak"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool for smooth git handover";
|
|
homepage = "https://github.com/remotemobprogramming/mob";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ericdallo ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|