2022-12-14 10:09:52 +00:00
|
|
|
{ lib, pkgs, stdenv, buildGoModule, fetchFromGitHub, nixosTests
|
|
|
|
, nodejs, debianutils, mkdocs, python3, python3Packages }:
|
|
|
|
|
2022-03-30 15:35:26 +00:00
|
|
|
|
2022-09-28 12:55:48 +00:00
|
|
|
let
|
|
|
|
nodeDependencies = (import ./node-composition.nix {
|
|
|
|
inherit pkgs nodejs;
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
}).nodeDependencies;
|
|
|
|
in
|
2022-03-30 15:35:26 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "ntfy-sh";
|
2023-04-26 19:13:55 +00:00
|
|
|
version = "2.4.0";
|
2022-03-30 15:35:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "binwiederhier";
|
|
|
|
repo = "ntfy";
|
|
|
|
rev = "v${version}";
|
2023-04-26 19:13:55 +00:00
|
|
|
sha256 = "sha256-bwYiIeDpZZpfv/HNtB/3acL0dJfegF/4OqWcEV8YGfY=";
|
2022-03-30 15:35:26 +00:00
|
|
|
};
|
|
|
|
|
2023-04-26 19:13:55 +00:00
|
|
|
vendorSha256 = "sha256-HHuj3PcIu1wsdcfd04PofoZHjRSgTfWfJcomqH3KXa8=";
|
2022-03-30 15:35:26 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-10-06 18:55:47 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
|
|
|
|
|
2022-09-28 12:55:48 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
debianutils
|
|
|
|
mkdocs
|
|
|
|
nodejs
|
|
|
|
python3
|
|
|
|
python3Packages.mkdocs-material
|
|
|
|
python3Packages.mkdocs-minify
|
2023-04-02 18:49:35 +00:00
|
|
|
python3Packages.mkdocs-simple-hooks
|
2022-09-28 12:55:48 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i 's# /bin/echo# echo#' Makefile
|
|
|
|
'';
|
|
|
|
|
2022-03-30 15:35:26 +00:00
|
|
|
preBuild = ''
|
2022-09-28 12:55:48 +00:00
|
|
|
ln -s ${nodeDependencies}/lib/node_modules web/node_modules
|
|
|
|
DISABLE_ESLINT_PLUGIN=true npm_config_offline=true make web-build docs-build
|
2022-03-30 15:35:26 +00:00
|
|
|
'';
|
|
|
|
|
2022-12-14 10:09:52 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = ./update.sh;
|
|
|
|
tests.ntfy-sh = nixosTests.ntfy-sh;
|
|
|
|
};
|
2022-12-14 09:59:51 +00:00
|
|
|
|
2022-03-30 15:35:26 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Send push notifications to your phone or desktop via PUT/POST";
|
|
|
|
homepage = "https://ntfy.sh";
|
|
|
|
license = licenses.asl20;
|
2022-12-14 10:09:52 +00:00
|
|
|
maintainers = with maintainers; [ arjan-s fpletz ];
|
2022-03-30 15:35:26 +00:00
|
|
|
};
|
|
|
|
}
|