Skip to content

Instantly share code, notes, and snippets.

@Michcioperz
Created March 1, 2021 18:53
Show Gist options
  • Save Michcioperz/4ecdeaf7921d63784eedf7197eafcb71 to your computer and use it in GitHub Desktop.
Save Michcioperz/4ecdeaf7921d63784eedf7197eafcb71 to your computer and use it in GitHub Desktop.
{ 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