Merge pull request #251611 from mfrw/mfrw/weggli

weggli: init at 0.2.4
This commit is contained in:
Matthias Beyer 2023-09-05 08:04:52 +02:00 committed by GitHub
commit 526908daa2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, rustPlatform
, fetchFromGitHub
, testers
, weggli
}:
rustPlatform.buildRustPackage rec {
pname = "weggli";
version = "0.2.4";
src = fetchFromGitHub {
owner = "weggli-rs";
repo = "weggli";
rev = "v${version}";
hash = "sha256-6XSedsTUjcZzFXaNitsXlUBpxC6TYVMCB+AfH3x7c5E=";
};
cargoSha256 = "sha256-Cj/m4GRaqI/lHYFruj047B7FdGoVl/wC8I2o1dzhOTs=";
passthru.tests.version = testers.testVersion {
package = weggli;
command = "weggli -V";
version = "weggli ${version}";
};
meta = with lib; {
description = "Weggli is a fast and robust semantic search tool for C and C++ codebases";
homepage = "https://github.com/weggli-rs/weggli";
changelog = "https://github.com/weggli-rs/weggli/releases/tag/v${version}";
mainProgram = "weggli";
license = licenses.asl20;
maintainers = with maintainers; [ arturcygan mfrw ];
};
}

View file

@ -42199,6 +42199,8 @@ with pkgs;
wpm = callPackage ../applications/misc/wpm { };
weggli = callPackage ../tools/security/weggli { };
yazi = callPackage ../applications/file-managers/yazi { inherit (darwin.apple_sdk.frameworks) Foundation; };
ssl-proxy = callPackage ../tools/networking/ssl-proxy { };