ntfy-sh: 2.4.0 -> 2.5.0
Release notes: https://docs.ntfy.sh/releases/#ntfy-server-v250 Diff: https://github.com/binwiederhier/ntfy/compare/v2.4.0...v2.5.0
This commit is contained in:
parent
68c1807f3c
commit
0c1b4e5626
2 changed files with 3350 additions and 682 deletions
|
@ -1,25 +1,29 @@
|
||||||
{ lib, pkgs, stdenv, buildGoModule, fetchFromGitHub, nixosTests
|
{ lib, pkgs, stdenv, buildGoModule, fetchFromGitHub, nixosTests
|
||||||
, nodejs, debianutils, mkdocs, python3, python3Packages }:
|
, nodejs, debianutils, mkdocs, python3, python3Packages
|
||||||
|
, pkg-config, pixman, cairo, pango }:
|
||||||
|
|
||||||
|
|
||||||
let
|
let
|
||||||
nodeDependencies = (import ./node-composition.nix {
|
nodeDependencies = (import ./node-composition.nix {
|
||||||
inherit pkgs nodejs;
|
inherit pkgs nodejs;
|
||||||
inherit (stdenv.hostPlatform) system;
|
inherit (stdenv.hostPlatform) system;
|
||||||
}).nodeDependencies;
|
}).nodeDependencies.override {
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [ pixman cairo pango ];
|
||||||
|
};
|
||||||
in
|
in
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "ntfy-sh";
|
pname = "ntfy-sh";
|
||||||
version = "2.4.0";
|
version = "2.5.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "binwiederhier";
|
owner = "binwiederhier";
|
||||||
repo = "ntfy";
|
repo = "ntfy";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-bwYiIeDpZZpfv/HNtB/3acL0dJfegF/4OqWcEV8YGfY=";
|
sha256 = "sha256-C7Ko7JBiQoafos7TbVTqq6pn7NnuLOZo7Dcf6ob2IzI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-HHuj3PcIu1wsdcfd04PofoZHjRSgTfWfJcomqH3KXa8=";
|
vendorSha256 = "sha256-9mhMeGcAdFjzLJdsGnoTArtxVEaUznpN64j5SMBYHv8=";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
|
4018
pkgs/tools/misc/ntfy-sh/node-packages.nix
generated
4018
pkgs/tools/misc/ntfy-sh/node-packages.nix
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue