xwallpaper: 0.6.6 -> 0.7.0

This commit is contained in:
IvarWithoutBones 2021-05-25 01:44:28 +02:00
parent 8fe39d98e4
commit 12b265cb5a

View file

@ -2,6 +2,7 @@
, fetchFromGitHub
, pkg-config
, autoreconfHook
, installShellFiles
, pixman
, xcbutil
, xcbutilimage
@ -13,20 +14,22 @@
stdenv.mkDerivation rec {
pname = "xwallpaper";
version = "0.6.6";
version = "0.7.0";
src = fetchFromGitHub {
owner = "stoeckmann";
repo = "xwallpaper";
rev = "v${version}";
sha256 = "sha256-WYtbwMFzvJ0Xr84gGoKSofSSnmb7Qn6ioGMOnQOqdII=";
sha256 = "1bpymspnllbscha8j9y67w9ck2l6yv66zdbknv8s13hz5qi1ishk";
};
preConfigure = "./autogen.sh";
nativeBuildInputs = [ pkg-config autoreconfHook ];
nativeBuildInputs = [ pkg-config autoreconfHook installShellFiles ];
buildInputs = [ pixman xcbutilimage xcbutil libseccomp libjpeg libpng libXpm ];
postInstall = ''
installShellCompletion --zsh _xwallpaper
'';
meta = with lib; {
homepage = "https://github.com/stoeckmann/xwallpaper";
description = "Utility for setting wallpapers in X";