mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #137623 from Kranzes/ristate
This commit is contained in:
commit
c47481db1c
2 changed files with 24 additions and 0 deletions
22
pkgs/tools/misc/ristate/default.nix
Normal file
22
pkgs/tools/misc/ristate/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, rustPlatform, fetchFromGitLab }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ristate";
|
||||
version = "unstable-2021-09-10";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "snakedye";
|
||||
repo = pname;
|
||||
rev = "34dfd0a0bab5b36df118d8da3956fd938c625b15";
|
||||
sha256 = "sha256-CH9DZ/7Bhbe6qKg1Nbj1rA9SzIsqVlBJg51XxAh0XnY=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-HTfRWvE3m7XZhZDj5bEkrQI3pD6GNiKd2gJtMjRQ8Rw=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A river-status client written in Rust";
|
||||
homepage = "https://gitlab.com/snakedye/ristate";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kranzes ];
|
||||
};
|
||||
}
|
|
@ -21825,6 +21825,8 @@ with pkgs;
|
|||
|
||||
riscv-pk = callPackage ../misc/riscv-pk { };
|
||||
|
||||
ristate = callPackage ../tools/misc/ristate { };
|
||||
|
||||
roccat-tools = callPackage ../os-specific/linux/roccat-tools { };
|
||||
|
||||
rtsp-simple-server = callPackage ../servers/rtsp-simple-server { };
|
||||
|
|
Loading…
Reference in a new issue