mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, testers
|
|
, mercure
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mercure";
|
|
version = "0.15.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dunglas";
|
|
repo = "mercure";
|
|
rev = "v${version}";
|
|
hash = "sha256-qPKfF0awRsMfXu7N/xNwFVmmuqTMGsDDqrVgt6LwviI=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/caddy";
|
|
|
|
vendorHash = "sha256-evUGa1kFWbj0ynDQruBRDx2opzh7Tc7eHnWn3H4xwxY=";
|
|
|
|
subPackages = [ "mercure" ];
|
|
excludedPackages = [ "../cmd/mercure" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X 'github.com/caddyserver/caddy/v2.CustomVersion=Mercure.rocks v${version} Caddy'"
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
version = "v${version}";
|
|
package = mercure;
|
|
command = "mercure version";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "An open, easy, fast, reliable and battery-efficient solution for real-time communications";
|
|
homepage = "https://github.com/dunglas/mercure";
|
|
changelog = "https://github.com/dunglas/mercure/releases/tag/v${version}";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ gaelreyrol ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "mercure";
|
|
};
|
|
}
|