forked from mirrors/nixpkgs
libgen-cli: init at 1.0.5
This commit is contained in:
parent
890440b027
commit
bbce0e88b9
30
pkgs/tools/misc/libgen-cli/default.nix
Normal file
30
pkgs/tools/misc/libgen-cli/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
buildGoModule rec {
|
||||
pname = "libgen-cli";
|
||||
version = "1.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ciehanski";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1lfsnyzin2dqhwhz6phms6yipli88sqiw55ls18dfv7bvx30sqlp";
|
||||
};
|
||||
|
||||
modSha256 = "1k16zjb7p65g72hr9vsk38jhpsy1yclm7fjgq47qy6jwjd44w1bi";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ciehanski/libgen-cli";
|
||||
description =
|
||||
"A CLI tool used to access the Library Genesis dataset; written in Go";
|
||||
longDescription = ''
|
||||
libgen-cli is a command line interface application which allows users to
|
||||
quickly query the Library Genesis dataset and download any of its
|
||||
contents.
|
||||
'';
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ zaninime ];
|
||||
};
|
||||
}
|
|
@ -3496,7 +3496,7 @@ in
|
|||
fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { };
|
||||
|
||||
fuse-overlayfs = callPackage ../tools/filesystems/fuse-overlayfs {};
|
||||
|
||||
|
||||
fusee-interfacee-tk = callPackage ../applications/misc/fusee-interfacee-tk { };
|
||||
|
||||
fusee-launcher = callPackage ../development/tools/fusee-launcher { };
|
||||
|
@ -4539,6 +4539,8 @@ in
|
|||
|
||||
libsmi = callPackage ../development/libraries/libsmi { };
|
||||
|
||||
libgen-cli = callPackage ../tools/misc/libgen-cli { };
|
||||
|
||||
licensor = callPackage ../tools/misc/licensor { };
|
||||
|
||||
lesspipe = callPackage ../tools/misc/lesspipe { };
|
||||
|
|
Loading…
Reference in a new issue