2018-10-28 10:33:56 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitLab
|
2018-11-18 07:27:39 +00:00
|
|
|
, xlibsWrapper, xorg, libpulseaudio, pkgconfig, patchelf, Security }:
|
2018-05-03 15:58:32 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "xidlehook-${version}";
|
2019-04-14 21:37:32 +01:00
|
|
|
version = "0.7.0";
|
2018-06-09 07:40:00 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
2018-05-03 15:58:32 +01:00
|
|
|
|
2018-10-28 10:33:56 +00:00
|
|
|
src = fetchFromGitLab {
|
2018-05-03 15:58:32 +01:00
|
|
|
owner = "jD91mZM2";
|
|
|
|
repo = "xidlehook";
|
|
|
|
rev = version;
|
|
|
|
|
2019-04-14 21:37:32 +01:00
|
|
|
sha256 = "0dl4rnh4l3rhga5pfxmkc9syn6vx05zxdf8xcv0gw9h60y1smp6v";
|
2018-05-03 15:58:32 +01:00
|
|
|
};
|
|
|
|
|
2018-06-09 07:40:00 +01:00
|
|
|
cargoBuildFlags = lib.optionals (!stdenv.isLinux) ["--no-default-features" "--features" "pulse"];
|
2019-04-14 21:37:32 +01:00
|
|
|
cargoSha256 = "148p7r9xmc0nc0d4qyxhh29xqcb5axwqwcxcrkgd41f32c3g44dc";
|
2018-05-03 15:58:32 +01:00
|
|
|
|
2018-11-18 07:27:39 +00:00
|
|
|
buildInputs = [ xlibsWrapper xorg.libXScrnSaver libpulseaudio ] ++ lib.optional stdenv.isDarwin Security;
|
2018-05-03 15:58:32 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig patchelf ];
|
|
|
|
|
2018-05-07 18:53:03 +01:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2018-05-03 15:58:32 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|