40 lines
962 B
Nix
40 lines
962 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, openssl
|
|
, pkg-config
|
|
, stdenv
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "stork";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jameslittle230";
|
|
repo = "stork";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-qGcEhoytkCkcaA5eHc8GVgWvbOIyrO6BCp+EHva6wTw=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-a7ADTJ0VmKiZBr951JIAOSPWucsBl5JnM8eQHWssRM4=";
|
|
|
|
checkFlags = [
|
|
# Fails for 1.6.0, but binary works fine
|
|
"--skip=pretty_print_search_results::tests::display_pretty_search_results_given_output"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
meta = with lib; {
|
|
description = "Impossibly fast web search, made for static sites";
|
|
homepage = "https://github.com/jameslittle230/stork";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ chuahou ];
|
|
mainProgram = "stork";
|
|
};
|
|
}
|