2022-10-26 11:07:22 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, stdenv }:
|
2021-06-20 13:11:28 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "livedl";
|
|
|
|
version = "unstable-2021-05-16";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "himananiito";
|
|
|
|
repo = pname;
|
|
|
|
rev = "a8720f1e358e5b0ade6fdeb8aacc00781e6cc504";
|
|
|
|
sha256 = "1zax215jp6sl47m8ahssyyrbzn96dh74srq9g61jc76sq10xg329";
|
|
|
|
};
|
|
|
|
|
2022-10-26 11:07:22 +00:00
|
|
|
modRoot = "src";
|
2021-06-20 13:11:28 +00:00
|
|
|
|
2022-10-26 11:07:22 +00:00
|
|
|
proxyVendor = true;
|
|
|
|
vendorSha256 = "sha256-C7lUusq/cWBCnA2wP9fzQglJCXvQyvFG4JY13H0cP6g=";
|
2021-06-20 13:11:28 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command-line tool to download nicovideo.jp livestreams";
|
|
|
|
homepage = "https://github.com/himananiito/livedl";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ wakira ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2022-10-26 11:07:22 +00:00
|
|
|
broken = stdenv.isDarwin; # build fails with go > 1.17
|
2021-06-20 13:11:28 +00:00
|
|
|
};
|
|
|
|
}
|