2021-03-05 01:09:30 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitLab
|
|
|
|
, python3
|
|
|
|
, xlibsWrapper
|
|
|
|
, xorg
|
|
|
|
, libpulseaudio
|
|
|
|
, pkg-config
|
|
|
|
, patchelf
|
|
|
|
, Security
|
|
|
|
}:
|
2018-05-03 15:58:32 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "xidlehook";
|
2021-03-05 01:09:30 +00:00
|
|
|
version = "0.10.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;
|
|
|
|
|
2021-03-05 01:09:30 +00:00
|
|
|
sha256 = "1pl7f8fhxfcy0c6c08vkagp0x1ak96vc5wgamigrk1nkd6l371lb";
|
2018-05-03 15:58:32 +01:00
|
|
|
};
|
|
|
|
|
2021-03-05 01:09:30 +00:00
|
|
|
cargoBuildFlags = lib.optionals (!stdenv.isLinux) [ "--no-default-features" "--features" "pulse" ];
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1y7m61j07gvqfqz97mda39nc602sv7a826c06m8l22i7z380xfms";
|
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;
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config patchelf python3 ];
|
2018-05-03 15:58:32 +01:00
|
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jD91mZM2/xidlehook";
|
2018-05-03 15:58:32 +01:00
|
|
|
license = licenses.mit;
|
2021-06-12 22:13:40 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-05-03 15:58:32 +01:00
|
|
|
platforms = platforms.unix;
|
2020-03-15 20:19:32 +00:00
|
|
|
badPlatforms = platforms.darwin;
|
2018-05-03 15:58:32 +01:00
|
|
|
};
|
|
|
|
}
|