mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
4955942ece
Release notes: https://docs.ntfy.sh/releases/#ntfy-server-v240 Diff: https://github.com/binwiederhier/ntfy/compare/v2.3.1...v2.4.0
59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
{ lib, pkgs, stdenv, buildGoModule, fetchFromGitHub, nixosTests
|
|
, nodejs, debianutils, mkdocs, python3, python3Packages }:
|
|
|
|
|
|
let
|
|
nodeDependencies = (import ./node-composition.nix {
|
|
inherit pkgs nodejs;
|
|
inherit (stdenv.hostPlatform) system;
|
|
}).nodeDependencies;
|
|
in
|
|
buildGoModule rec {
|
|
pname = "ntfy-sh";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "binwiederhier";
|
|
repo = "ntfy";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-bwYiIeDpZZpfv/HNtB/3acL0dJfegF/4OqWcEV8YGfY=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-HHuj3PcIu1wsdcfd04PofoZHjRSgTfWfJcomqH3KXa8=";
|
|
|
|
doCheck = false;
|
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
|
|
|
|
nativeBuildInputs = [
|
|
debianutils
|
|
mkdocs
|
|
nodejs
|
|
python3
|
|
python3Packages.mkdocs-material
|
|
python3Packages.mkdocs-minify
|
|
python3Packages.mkdocs-simple-hooks
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i 's# /bin/echo# echo#' Makefile
|
|
'';
|
|
|
|
preBuild = ''
|
|
ln -s ${nodeDependencies}/lib/node_modules web/node_modules
|
|
DISABLE_ESLINT_PLUGIN=true npm_config_offline=true make web-build docs-build
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
tests.ntfy-sh = nixosTests.ntfy-sh;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Send push notifications to your phone or desktop via PUT/POST";
|
|
homepage = "https://ntfy.sh";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ arjan-s fpletz ];
|
|
};
|
|
}
|