Merge pull request #137623 from Kranzes/ristate

authored by Sandro and committed by GitHub c47481db 79b9c2df

+24
+22
pkgs/tools/misc/ristate/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitLab }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "ristate"; 5 + version = "unstable-2021-09-10"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "snakedye"; 9 + repo = pname; 10 + rev = "34dfd0a0bab5b36df118d8da3956fd938c625b15"; 11 + sha256 = "sha256-CH9DZ/7Bhbe6qKg1Nbj1rA9SzIsqVlBJg51XxAh0XnY="; 12 + }; 13 + 14 + cargoSha256 = "sha256-HTfRWvE3m7XZhZDj5bEkrQI3pD6GNiKd2gJtMjRQ8Rw="; 15 + 16 + meta = with lib; { 17 + description = "A river-status client written in Rust"; 18 + homepage = "https://gitlab.com/snakedye/ristate"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ kranzes ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 21825 21825 21826 21826 riscv-pk = callPackage ../misc/riscv-pk { }; 21827 21827 21828 + ristate = callPackage ../tools/misc/ristate { }; 21829 + 21828 21830 roccat-tools = callPackage ../os-specific/linux/roccat-tools { }; 21829 21831 21830 21832 rtsp-simple-server = callPackage ../servers/rtsp-simple-server { };