21 lines
497 B
Nix
21 lines
497 B
Nix
{ lib, fetchFromGitHub, rustPlatform, ... }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kidex";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Kirottu";
|
|
repo = pname;
|
|
rev = "d1aad240eb0bac7f017183fc80b0dc41f49a98d3";
|
|
sha256 = "LgY4hYJOzGSNZxOK1O4L6A+4/qgv4dhouKo0nLKK25A=";
|
|
};
|
|
|
|
cargoSha256 = "BkpiJZZ83RrSSmbxM/TBl8rx5wIxLwYDZvFWdTwlUSI=";
|
|
|
|
meta = {
|
|
description = "A simple file indexing service";
|
|
homepage = "https://github.com/Kirottu/kidex";
|
|
};
|
|
}
|