depot/third_party/nixpkgs/pkgs/tools/misc/noti/default.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

52 lines
1.1 KiB
Nix

{ stdenv
, lib
, buildGoModule
, fetchFromGitHub
, Cocoa
, installShellFiles
}:
buildGoModule rec {
pname = "noti";
version = "3.7.0";
src = fetchFromGitHub {
owner = "variadico";
repo = "noti";
rev = version;
hash = "sha256-8CHSbKOiWNYqKBU1kqQm5t02DJq0JfoIaPsU6Ylc46E=";
};
vendorHash = null;
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.isDarwin Cocoa;
ldflags = [
"-s"
"-w"
"-X github.com/variadico/noti/internal/command.Version=${version}"
];
preCheck = ''
export PATH=$out/bin:$PATH
'';
postInstall = ''
installManPage docs/man/dist/*
'';
meta = with lib; {
description = "Monitor a process and trigger a notification";
longDescription = ''
Monitor a process and trigger a notification.
Never sit and wait for some long-running process to finish. Noti can alert
you when it's done. You can receive messages on your computer or phone.
'';
homepage = "https://github.com/variadico/noti";
license = licenses.mit;
maintainers = with maintainers; [ stites marsam ];
};
}