isponsorblocktv: package and deploy
All checks were successful
flake / flake (push) Successful in 1m13s
All checks were successful
flake / flake (push) Successful in 1m13s
This commit is contained in:
parent
5c1010b702
commit
d61d4d0942
@ -30,7 +30,9 @@
|
|||||||
getSystemOverlays = system: nixpkgsConfig: [
|
getSystemOverlays = system: nixpkgsConfig: [
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
unstable = nixpkgs-unstable.legacyPackages.${prev.system};
|
unstable = nixpkgs-unstable.legacyPackages.${prev.system};
|
||||||
|
|
||||||
"storj" = final.callPackage ./pkgs/storj.nix { };
|
"storj" = final.callPackage ./pkgs/storj.nix { };
|
||||||
|
"isponsorblocktv" = final.callPackage ./pkgs/isponsorblocktv.nix { };
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
|
26
pkgs/isponsorblocktv.nix
Normal file
26
pkgs/isponsorblocktv.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, python3Packages, fetchGitHub, ... }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
|
pname = "isponsorblocktv";
|
||||||
|
version = "2.1.0";
|
||||||
|
|
||||||
|
src = fetchGitHub {
|
||||||
|
owner = "dmunozv04";
|
||||||
|
repo = "iSponsorBlockTV";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Skip sponsor segments in YouTube videos playing on a YouTube TV device.";
|
||||||
|
homepage = "https://github.com/dmunozv04/iSponsorBlockTV";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = [{
|
||||||
|
email = "jake@hillion.co.uk";
|
||||||
|
matrix = "@jake:hillion.co.uk";
|
||||||
|
name = "Jake Hillion";
|
||||||
|
github = "JakeHillion";
|
||||||
|
githubId = 5712856;
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user