about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/livedl/default.nix
blob: f5c68be68d60484a3a45776653fc720dc42a470c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildGoModule, fetchFromGitHub, stdenv }:

buildGoModule rec {
  pname = "livedl";
  version = "unstable-2021-05-16";

  src = fetchFromGitHub {
    owner = "himananiito";
    repo = pname;
    rev = "a8720f1e358e5b0ade6fdeb8aacc00781e6cc504";
    sha256 = "1zax215jp6sl47m8ahssyyrbzn96dh74srq9g61jc76sq10xg329";
  };

  modRoot = "src";

  proxyVendor = true;
  vendorHash = "sha256-C7lUusq/cWBCnA2wP9fzQglJCXvQyvFG4JY13H0cP6g=";

  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;
    broken = stdenv.isDarwin; # build fails with go > 1.17
  };
}