Files
nixpkgs/pkgs/by-name/sa/salut/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

43 lines
832 B
Nix

{
lib,
rustPlatform,
fetchFromGitLab,
pkg-config,
fontconfig,
libxkbcommon,
wayland,
}:
rustPlatform.buildRustPackage {
pname = "salut";
version = "unstable-2022-12-17";
src = fetchFromGitLab {
owner = "snakedye";
repo = "salut";
rev = "aa57c4d190812908a9c32cd49cff14390c6dfdcb";
hash = "sha256-W0lhhImSXtYJDeMbxyEioYu/Bh7ZclwR1/5DzNbxM8o=";
};
cargoHash = "sha256-xqj9USqVG7g2zT2P3VxDVt8fFDtyUnZOdT6gYZh4cRI=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
fontconfig
libxkbcommon
wayland
];
meta = {
description = "Sleek notification daemon for Wayland";
homepage = "https://gitlab.com/snakedye/salut/-/wikis/Home";
license = lib.licenses.mpl20;
maintainers = [ ];
mainProgram = "salut";
platforms = lib.platforms.linux;
};
}