forked from mirrors/nixpkgs
Merge pull request #213411 from NRHelmi/xteve-init
xteve: init at 2.2.0.200
This commit is contained in:
commit
8e7ecb51e0
|
@ -10472,6 +10472,12 @@
|
|||
githubId = 34083928;
|
||||
name = "Tim DeHerrera";
|
||||
};
|
||||
nrhelmi = {
|
||||
email = "helmiinour@gmail.com";
|
||||
github = "nrhelmi";
|
||||
githubId = 15707703;
|
||||
name = "Helmi Nour";
|
||||
};
|
||||
nshalman = {
|
||||
email = "nahamu@gmail.com";
|
||||
github = "nshalman";
|
||||
|
|
22
pkgs/servers/xteve/default.nix
Normal file
22
pkgs/servers/xteve/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ 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=";
|
||||
};
|
||||
|
||||
vendorSha256 = "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 ];
|
||||
};
|
||||
}
|
|
@ -13075,6 +13075,8 @@ with pkgs;
|
|||
|
||||
xray = callPackage ../tools/networking/xray { };
|
||||
|
||||
xteve = callPackage ../servers/xteve { };
|
||||
|
||||
testdisk = libsForQt5.callPackage ../tools/system/testdisk { };
|
||||
|
||||
testdisk-qt = testdisk.override { enableQt = true; };
|
||||
|
|
Loading…
Reference in a new issue