python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / livedl / default.nix
blobef298fbc64646dbe632d4a58e840924a8a80d312
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "livedl";
5   version = "unstable-2021-05-16";
7   src = fetchFromGitHub {
8     owner = "himananiito";
9     repo = pname;
10     rev = "a8720f1e358e5b0ade6fdeb8aacc00781e6cc504";
11     sha256 = "1zax215jp6sl47m8ahssyyrbzn96dh74srq9g61jc76sq10xg329";
12   };
14   sourceRoot = "source/src";
16   vendorSha256 = "g5Y1IH1U1zOOHygTzAJuBnUj+MyPe64KHTYikipt3TY=";
18   meta = with lib; {
19     description = "Command-line tool to download nicovideo.jp livestreams";
20     homepage = "https://github.com/himananiito/livedl";
21     license = licenses.mit;
22     maintainers = with maintainers; [ wakira ];
23     platforms = platforms.linux ++ platforms.darwin;
24   };