xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / sa / salut / package.nix
blob82d5d5960de01e2f0a58943c4b83ba6cab0d609e
2   lib,
3   rustPlatform,
4   fetchFromGitLab,
5   pkg-config,
6   fontconfig,
7   libxkbcommon,
8   wayland,
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "salut";
13   version = "unstable-2022-12-17";
15   src = fetchFromGitLab {
16     owner = "snakedye";
17     repo = "salut";
18     rev = "aa57c4d190812908a9c32cd49cff14390c6dfdcb";
19     hash = "sha256-W0lhhImSXtYJDeMbxyEioYu/Bh7ZclwR1/5DzNbxM8o=";
20   };
22   cargoLock = {
23     lockFile = ./Cargo.lock;
24     outputHashes = {
25       "msg-api-0.1.0" = "sha256-SGEr9kitvD+KZPGejwDAISK6ERk7G2uskxX8ljiJ2To=";
26       "smithay-client-toolkit-0.16.0" = "sha256-kiTO+BZIgpuwAr6gs9FCqz81jRg+3dV4NxzOX9kbJOc=";
27       "snui-0.1.4" = "sha256-jJL9ukSOczHjPM2EAXcXcz620SK4DQfr+xAT8v7fp9o=";
28       "snui-adwaita-0.1.0" = "sha256-pILhLMzqnhLZfGAXT8QQn6x+IvwG7CSa96wZqq1yrLY=";
29     };
30   };
32   nativeBuildInputs = [
33     pkg-config
34   ];
36   buildInputs = [
37     fontconfig
38     libxkbcommon
39     wayland
40   ];
42   meta = {
43     description = "Sleek notification daemon for Wayland";
44     homepage = "https://gitlab.com/snakedye/salut/-/wikis/Home";
45     license = lib.licenses.mpl20;
46     maintainers = with lib.maintainers; [ ];
47     mainProgram = "salut";
48     platforms = lib.platforms.linux;
49   };