forked from mirrors/nixpkgs
lnx: init at unstable 2022-06-25
This commit is contained in:
parent
e3a687a903
commit
2a04d4cb5e
2 changed files with 35 additions and 0 deletions
31
pkgs/servers/search/lnx/default.nix
Normal file
31
pkgs/servers/search/lnx/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, DiskArbitration
|
||||||
|
, Foundation
|
||||||
|
}:
|
||||||
|
|
||||||
|
# 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=";
|
||||||
|
};
|
||||||
|
cargoSha256 = "sha256-JpsZ37u3+4+X8knTxoGmJisopTsPR221rv3Bu4DMZZI=";
|
||||||
|
buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation ];
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Insanely fast, Feature-rich searching. lnx is the adaptable, typo tollerant deployment of the tantivy search engine. Standing on the shoulders of giants. ";
|
||||||
|
homepage = "https://lnx.rs/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ happysalada ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -7709,6 +7709,10 @@ with pkgs;
|
||||||
|
|
||||||
lnch = callPackage ../tools/misc/lnch { };
|
lnch = callPackage ../tools/misc/lnch { };
|
||||||
|
|
||||||
|
lnx = callPackage ../servers/search/lnx {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation;
|
||||||
|
};
|
||||||
|
|
||||||
loadlibrary = callPackage ../tools/misc/loadlibrary { };
|
loadlibrary = callPackage ../tools/misc/loadlibrary { };
|
||||||
|
|
||||||
loc = callPackage ../development/misc/loc { };
|
loc = callPackage ../development/misc/loc { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue