xidlehook: init at 0.4.6

This commit is contained in:
jD91mZM2 2018-05-03 16:58:32 +02:00
parent 8ce802e8c8
commit cf09900bbc
No known key found for this signature in database
GPG key ID: 3055D54729A72666
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib, rustPlatform, fetchFromGitHub, x11, xorg, libpulseaudio, pkgconfig, patchelf }:
rustPlatform.buildRustPackage rec {
name = "xidlehook-${version}";
version = "0.4.6";
src = fetchFromGitHub {
owner = "jD91mZM2";
repo = "xidlehook";
rev = version;
sha256 = "0h84ichm1v2wdmm4w1n7jr70yfb9hhi7kykvd99ppg00h1x9lr7w";
};
cargoSha256 = "0a1bl6fnfw6xy71q3b5zij52p9skylj1ivqj8my44bfsid2qfn7d";
buildInputs = [ x11 xorg.libXScrnSaver libpulseaudio ];
nativeBuildInputs = [ pkgconfig patchelf ];
postFixup = ''
RPATH="$(patchelf --print-rpath $out/bin/xidlehook)"
patchelf --set-rpath "$RPATH:${libpulseaudio}/lib" $out/bin/xidlehook
'';
meta = with lib; {
description = "xautolock rewrite in Rust, with a few extra features";
homepage = https://github.com/jD91mZM2/xidlehook;
license = licenses.mit;
maintainers = with maintainers; [ jD91mZM2 ];
platforms = platforms.unix;
};
}

View file

@ -5770,6 +5770,8 @@ with pkgs;
xiccd = callPackage ../tools/misc/xiccd { };
xidlehook = callPackage ../tools/X11/xidlehook {};
xorriso = callPackage ../tools/cd-dvd/xorriso { };
xpf = callPackage ../tools/text/xml/xpf {