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

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

43 lines
837 B
Nix
Raw Normal View History

{ lib
2022-05-20 10:54:26 +02:00
, buildGoModule
, fetchFromGitHub
, stdenv
, withSpeech ? !stdenv.isDarwin
, makeWrapper
, espeak-ng
}:
2020-08-31 19:46:25 +02:00
2022-05-20 10:54:26 +02:00
buildGoModule rec {
2020-08-31 19:46:25 +02:00
pname = "mob";
2022-09-16 00:50:03 +02:00
version = "3.2.0";
2020-08-31 19:46:25 +02:00
src = fetchFromGitHub {
owner = "remotemobprogramming";
repo = pname;
2022-05-20 10:54:26 +02:00
rev = "v${version}";
2022-09-16 00:50:03 +02:00
sha256 = "sha256-qr6F98OVI+K0V59YH35GERiC9jgxp/YJm4N4EGvDotk=";
2020-08-31 19:46:25 +02:00
};
2022-07-29 02:57:21 +02:00
vendorSha256 = null;
2022-05-20 10:54:26 +02:00
nativeBuildInputs = [
makeWrapper
];
2022-05-20 10:54:26 +02:00
ldflags = [ "-s" "-w" ];
doCheck = false;
preFixup = lib.optionalString withSpeech ''
wrapProgram $out/bin/mob \
--set MOB_VOICE_COMMAND "${lib.getBin espeak-ng}/bin/espeak"
'';
2020-08-31 19:46:25 +02:00
meta = with lib; {
description = "Tool for smooth git handover";
2020-08-31 19:46:25 +02:00
homepage = "https://github.com/remotemobprogramming/mob";
license = licenses.mit;
maintainers = with maintainers; [ ericdallo ];
2020-08-31 19:46:25 +02:00
};
}