-
-
Save Michcioperz/4ecdeaf7921d63784eedf7197eafcb71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {} }: | |
with pkgs; | |
rustPlatform.buildRustPackage rec { | |
pname = "meilisearch"; | |
version = "0.19.0"; | |
src = fetchFromGitHub { | |
owner = "meilisearch"; | |
repo = "MeiliSearch"; | |
rev = "v${version}"; | |
sha256 = "17k5hqi1zf87wzkrjl9b4hpcnxd2dvl9yv4v9ggdp274ik66yz61"; | |
}; | |
cargoSha256 = "0000000000000000000000000000000000000000000000000000"; | |
meta = with lib; { | |
description = "Ultra relevant and instant full-text search API"; | |
homepage = "https://meilisearch.com/"; | |
license = licenses.mit; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment