nixpkgs/pkgs/tools/X11/xwallpaper/default.nix

41 lines
886 B
Nix
Raw Normal View History

{ lib, stdenv
2020-09-07 14:36:38 +00:00
, fetchFromGitHub
, pkg-config
, autoreconfHook
2021-05-24 23:44:28 +00:00
, installShellFiles
2020-09-07 14:36:38 +00:00
, pixman
, xcbutil
, xcbutilimage
, libseccomp
2020-09-07 14:36:38 +00:00
, libjpeg
, libpng
, libXpm
}:
2020-05-13 18:14:22 +00:00
stdenv.mkDerivation rec {
pname = "xwallpaper";
2021-05-24 23:44:28 +00:00
version = "0.7.0";
2020-05-13 18:14:22 +00:00
src = fetchFromGitHub {
owner = "stoeckmann";
repo = "xwallpaper";
rev = "v${version}";
2021-05-24 23:44:28 +00:00
sha256 = "1bpymspnllbscha8j9y67w9ck2l6yv66zdbknv8s13hz5qi1ishk";
2020-05-13 18:14:22 +00:00
};
2021-05-24 23:44:28 +00:00
nativeBuildInputs = [ pkg-config autoreconfHook installShellFiles ];
buildInputs = [ pixman xcbutilimage xcbutil libseccomp libjpeg libpng libXpm ];
2020-05-13 18:14:22 +00:00
2021-05-24 23:44:28 +00:00
postInstall = ''
installShellCompletion --zsh _xwallpaper
'';
meta = with lib; {
2020-05-13 18:14:22 +00:00
homepage = "https://github.com/stoeckmann/xwallpaper";
description = "Utility for setting wallpapers in X";
license = licenses.isc;
maintainers = with maintainers; [ ivar ];
platforms = platforms.linux;
};
}