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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
858 B
Nix
Raw Normal View History

{ lib
, buildGoPackage
, fetchFromGitHub
, withSpeech ? true
, makeWrapper
, espeak-ng
}:
2020-08-31 17:46:25 +00:00
buildGoPackage rec {
pname = "mob";
2022-02-28 12:29:28 +00:00
version = "2.6.0";
2020-08-31 17:46:25 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "remotemobprogramming";
repo = pname;
2022-02-28 12:29:28 +00:00
sha256 = "sha256-GJ4V4GQRUoXelk0ksHPoFL4iB1W7pe2UydK2AhYjysg=";
2020-08-31 17:46:25 +00:00
};
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"
'';
2020-08-31 17:46:25 +00:00
meta = with lib; {
description = "Tool for smooth git handover";
2020-08-31 17:46:25 +00:00
homepage = "https://github.com/remotemobprogramming/mob";
license = licenses.mit;
maintainers = with maintainers; [ ericdallo ];
2020-08-31 17:46:25 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}