Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / fa / fanbox-dl / package.nix
blob102a9120b9dafd9711af065fcaeaa1bd8769946a
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "fanbox-dl";
5   version = "0.22.1";
7   src = fetchFromGitHub {
8     owner = "hareku";
9     repo = "fanbox-dl";
10     rev = "v${version}";
11     hash = "sha256-wMFxAi4ENFFdMwHpgfOp/FRF6h2p91NS94FAjH/C2ww=";
12   };
14   vendorHash = "sha256-GD5uxa5XWhlHHBztTpDKCTSym2pdkr/or6aGl9qF29U=";
16   # pings websites during testing
17   doCheck = false;
19   meta = with lib; {
20     description = "Pixiv FANBOX Downloader";
21     mainProgram = "fanbox-dl";
22     homepage = "https://github.com/hareku/fanbox-dl";
23     license = licenses.mit;
24     maintainers = [ maintainers.moni ];
25   };