Merge pull request #124319 from IvarWithoutBones/bump/xwallpaper

This commit is contained in:
Sandro 2021-05-25 03:46:54 +02:00 committed by GitHub
commit 1d7d968217
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";