Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / frece / default.nix
blob64de6d162f0a0f9359659b55044227fad3aa4102
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "frece";
5   version = "1.0.6";
7   src = fetchFromGitHub {
8     owner = "YodaEmbedding";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-CAiIqT5KuzrqbV9FVK3nZUe8MDs2KDdsKplJMI7rN9w=";
12   };
14   cargoSha256 = "sha256-eLN917L6l0vUWlAn3ROKrRdtyqaaMKjBQD2tEGWECUU=";
16   meta = with lib; {
17     description = "Maintain a database sorted by frecency (frequency + recency)";
18     homepage = "https://github.com/YodaEmbedding/frece";
19     license = licenses.mit;
20     platforms = platforms.linux;
21     maintainers = with maintainers; [ ];
22   };