43 lines
887 B
Nix
43 lines
887 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
openssl,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "suckit";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skallwar";
|
|
repo = "suckit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-M4/vD1sVny7hAf4h56Z2xy7yuCqH/H3qHYod6haZOs0=";
|
|
};
|
|
|
|
cargoHash = "sha256-20Fz98mAkmhk7g0359S7Gjg6i89cXtKuS/9bVzOagBs=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
# requires internet access
|
|
checkFlags = [
|
|
"--skip=test_download_url"
|
|
"--skip=test_external_download"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Recursively visit and download a website's content to your disk";
|
|
homepage = "https://github.com/skallwar/suckit";
|
|
license = with licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "suckit";
|
|
};
|
|
}
|