fighting with wpaperd and swaylock-plugin

This commit is contained in:
Matt Nish-Lapidus 2025-07-04 01:12:55 -04:00
parent 0a990d8308
commit cfb2e9209e
9 changed files with 68 additions and 46 deletions

23
overlays/wpaperd.nix Normal file
View file

@ -0,0 +1,23 @@
final: prev: {
wpaperd = prev.wpaperd.override (
let
rp = prev.rustPlatform;
in
{
rustPlatform = rp // {
buildRustPackage = args: rp.buildRustPackage (
args // rec {
cargoHash = "sha256-d8jzoNCn9J36SE4tQZ1orgOfFGbhVtHaaO940b3JxmQ=";
version = "1.2.2";
src = prev.fetchFromGitHub {
owner = "danyspin97";
repo = "wpaperd";
rev = "1.2.2";
hash = "sha256-6XVpjTdo/wI65Lzd02fjqir7a28EEBBp3794zLgxayY=";
};
}
);
};
}
);
}