mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #275265 from moni-dz/fanbox-dl
fanbox-dl: init at 0.17.0
This commit is contained in:
commit
1dd8d2b91a
25
pkgs/by-name/fa/fanbox-dl/package.nix
Normal file
25
pkgs/by-name/fa/fanbox-dl/package.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "fanbox-dl";
|
||||
version = "0.17.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hareku";
|
||||
repo = "fanbox-dl";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Fwc8S48zCE5s66gNVhJi9Y45v7rKo9K9dYQoao33mDE=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-PsbPAwjqT2PP6DtrzHaQox1er/LAkiHPMVMLH4gmfpg=";
|
||||
|
||||
# pings websites during testing
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pixiv FANBOX Downloader";
|
||||
homepage = "https://github.com/hareku/fanbox-dl";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.moni ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user