mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
xwallpaper: 0.6.6 -> 0.7.0
This commit is contained in:
parent
8fe39d98e4
commit
12b265cb5a
1 changed files with 8 additions and 5 deletions
|
@ -2,6 +2,7 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
|
, installShellFiles
|
||||||
, pixman
|
, pixman
|
||||||
, xcbutil
|
, xcbutil
|
||||||
, xcbutilimage
|
, xcbutilimage
|
||||||
|
@ -13,20 +14,22 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xwallpaper";
|
pname = "xwallpaper";
|
||||||
version = "0.6.6";
|
version = "0.7.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "stoeckmann";
|
owner = "stoeckmann";
|
||||||
repo = "xwallpaper";
|
repo = "xwallpaper";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-WYtbwMFzvJ0Xr84gGoKSofSSnmb7Qn6ioGMOnQOqdII=";
|
sha256 = "1bpymspnllbscha8j9y67w9ck2l6yv66zdbknv8s13hz5qi1ishk";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = "./autogen.sh";
|
nativeBuildInputs = [ pkg-config autoreconfHook installShellFiles ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
||||||
buildInputs = [ pixman xcbutilimage xcbutil libseccomp libjpeg libpng libXpm ];
|
buildInputs = [ pixman xcbutilimage xcbutil libseccomp libjpeg libpng libXpm ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installShellCompletion --zsh _xwallpaper
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/stoeckmann/xwallpaper";
|
homepage = "https://github.com/stoeckmann/xwallpaper";
|
||||||
description = "Utility for setting wallpapers in X";
|
description = "Utility for setting wallpapers in X";
|
||||||
|
|
Loading…
Reference in a new issue