Files
nixpkgs/pkgs/servers/http/nginx/modules/mpeg-ts/package.nix
Martin Weinelt 332e43b0cc nginxModules: upgrade to derivations
This is how we gain proper versioning, standard patch application,
automatic updates. In total a more healthy nginx module package set.
2026-07-31 21:44:51 +02:00

25 lines
479 B
Nix

{
fetchFromGitHub,
lib,
mkNginxPlugin,
}:
mkNginxPlugin (finalAttrs: {
pname = "mpeg-ts";
version = "0.1.1";
src = fetchFromGitHub {
owner = "arut";
repo = "nginx-ts-module";
tag = "v${finalAttrs.version}";
hash = "sha256-Dffm7sYnbXI4Ecx8bq8i17Tql7Y0qUEZc0FZbrxnvYk=";
};
meta = {
description = "MPEG-TS Live Module";
homepage = "https://github.com/arut/nginx-ts-module";
license = lib.licenses.bsd2;
maintainers = [ ];
};
})