biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / ristate / default.nix
blob9a0541d03f8ad982b3ef4ac221d2c21502c4d25f
1 { lib, rustPlatform, fetchFromGitLab }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ristate";
5   version = "unstable-2021-09-10";
7   src = fetchFromGitLab {
8     owner = "snakedye";
9     repo = pname;
10     rev = "34dfd0a0bab5b36df118d8da3956fd938c625b15";
11     hash = "sha256-CH9DZ/7Bhbe6qKg1Nbj1rA9SzIsqVlBJg51XxAh0XnY=";
12   };
14   cargoHash = "sha256-HTfRWvE3m7XZhZDj5bEkrQI3pD6GNiKd2gJtMjRQ8Rw=";
16   meta = with lib; {
17     description = "River-status client written in Rust";
18     homepage = "https://gitlab.com/snakedye/ristate";
19     license = licenses.mit;
20     maintainers = with maintainers; [ kranzes ];
21     mainProgram = "ristate";
22   };