ytarchive: init at 0.3.0

This commit is contained in:
Mario Rodas 2021-12-18 04:20:00 +00:00
parent 29a6393424
commit 5d736328db
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ytarchive";
version = "0.3.0";
src = fetchFromGitHub {
owner = "Kethsar";
repo = "ytarchive";
rev = "v${version}";
sha256 = "sha256-7D92xKxU2WBMDJSY5uFKDbLHWlyT761xuZDiBJ1GxE4=";
};
vendorSha256 = "sha256-r9fDFSCDItQ7YSj9aTY1LXRrFE9T3XD0X36ywCfu0R8=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/Kethsar/ytarchive";
description = "Garbage Youtube livestream downloader";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}

View File

@ -29707,6 +29707,8 @@ with pkgs;
ytalk = callPackage ../applications/networking/instant-messengers/ytalk { };
ytarchive = callPackage ../tools/misc/ytarchive { };
ytcc = callPackage ../tools/networking/ytcc { };
ytmdesktop = callPackage ../applications/audio/ytmdesktop { };