mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
23 lines
594 B
Nix
23 lines
594 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "xteve";
|
|
version = "2.2.0.200";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xteve-project";
|
|
repo = "xTeVe";
|
|
rev = version;
|
|
hash = "sha256-hD4GudSkGZO41nR/CgcMg/SqKjpAO1yJDkfwa8AUges=";
|
|
};
|
|
|
|
vendorHash = "sha256-oPkSWpqNozfSFLIFsJ+e2pOL6CcR91YHbqibEVF2aSk=";
|
|
|
|
meta = with lib; {
|
|
description = "M3U Proxy for Plex DVR and Emby Live TV";
|
|
homepage = "https://github.com/xteve-project/xTeVe";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nrhelmi ];
|
|
mainProgram = "xteve";
|
|
};
|
|
}
|