biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / frece / default.nix
blobc8b6a3a85f9c5cd04e931e4de78076f2eb3c456d
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     mainProgram = "frece";
19     homepage = "https://github.com/YodaEmbedding/frece";
20     license = licenses.mit;
21     platforms = platforms.linux;
22     maintainers = with maintainers; [ ];
23   };