nixpkgs/pkgs/tools/wayland/swww/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, lz4
, libxkbcommon
, installShellFiles
, scdoc
}:
2022-11-22 02:03:42 +00:00
rustPlatform.buildRustPackage rec {
pname = "swww";
version = "0.8.1";
2022-11-22 02:03:42 +00:00
src = fetchFromGitHub {
owner = "Horus645";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-9c/qBmk//NpfvPYjK2QscubFneiQYBU/7PLtTvVRmTA=";
2022-11-22 02:03:42 +00:00
};
2023-02-04 16:40:58 +00:00
cargoSha256 = "sha256-AE9bQtW5r1cjIsXA7YEP8TR94wBjaM7emOroVFq9ldE=";
buildInputs = [
lz4
libxkbcommon
];
2023-02-19 04:22:24 +00:00
doCheck = false; # Integration tests do not work in sandbox environment
nativeBuildInputs = [
pkg-config
installShellFiles
scdoc
];
postInstall = ''
for f in doc/*.scd; do
local page="doc/$(basename "$f" .scd)"
scdoc < "$f" > "$page"
installManPage "$page"
done
installShellCompletion --cmd swww \
--bash <(cat completions/swww.bash) \
--fish <(cat completions/swww.fish) \
--zsh <(cat completions/_swww)
'';
2023-02-04 16:40:58 +00:00
2022-11-22 02:03:42 +00:00
meta = with lib; {
description = "Efficient animated wallpaper daemon for wayland, controlled at runtime";
2022-11-22 02:03:42 +00:00
homepage = "https://github.com/Horus645/swww";
license = licenses.gpl3;
maintainers = with maintainers; [ mateodd25 donovanglover ];
2022-11-22 02:03:42 +00:00
platforms = platforms.linux;
mainProgram = "swww";
2022-11-22 02:03:42 +00:00
};
}