2023-02-12 00:32:13 +01:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, pkg-config, libxkbcommon }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "swww";
|
2023-07-23 16:08:14 +02:00
|
|
|
version = "v0.8.0";
|
2023-02-12 00:32:13 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Horus645";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-04-13 12:38:43 +02:00
|
|
|
hash = "sha256-0QJlZ8ht6niO+D+G6jO+Ggdgt/0VeO6gquCGL5lS6nM=";
|
2023-02-12 00:32:13 +01:00
|
|
|
};
|
|
|
|
|
2023-07-23 16:08:14 +02:00
|
|
|
cargoSha256 = "sha256-ZjFeKh9/kGI8EBVe99jGdLoeA1Pun4aYWwLyMwOJCrU=";
|
2023-02-12 00:32:13 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxkbcommon
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A Solution to your Wayland Wallpaper Woes";
|
|
|
|
homepage = "https://github.com/Horus645/swww";
|
|
|
|
license = licenses.gpl3;
|
2023-02-12 23:33:57 +01:00
|
|
|
maintainers = with maintainers; [ reo101 ];
|
2023-02-12 00:32:13 +01:00
|
|
|
};
|
|
|
|
}
|