Files
nixpkgs/pkgs/by-name/ln/lnx/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

32 lines
817 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
# unstable was chosen because of an added Cargo.lock
# revert to stable for the version after 0.9.0
let
version = "unstable-2022-06-25";
in
rustPlatform.buildRustPackage {
pname = "lnx";
inherit version;
src = fetchFromGitHub {
owner = "lnx-search";
repo = "lnx";
rev = "2cb80f344c558bfe37f21ccfb83265bf351419d9";
sha256 = "sha256-iwoZ6xRzEDArmhWYxIrbIXRTQjOizyTsXCvMdnUrs2g=";
};
cargoHash = "sha256-9fro1Dx7P+P9NTsg0gtMfr0s4TEpkZA31EFAnObiNFo=";
meta = with lib; {
description = "Ultra-fast, adaptable deployment of the tantivy search engine via REST";
mainProgram = "lnx";
homepage = "https://lnx.rs/";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
platforms = platforms.unix;
};
}