2019-11-23 04:30:22 -08:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitLab, python3
|
2018-11-17 23:27:39 -08:00
|
|
|
, xlibsWrapper, xorg, libpulseaudio, pkgconfig, patchelf, Security }:
|
2018-05-03 07:58:32 -07:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 04:41:23 -07:00
|
|
|
pname = "xidlehook";
|
2020-03-15 13:19:32 -07:00
|
|
|
version = "0.8.2";
|
2018-06-08 23:40:00 -07:00
|
|
|
|
|
|
|
doCheck = false;
|
2018-05-03 07:58:32 -07:00
|
|
|
|
2018-10-28 03:33:56 -07:00
|
|
|
src = fetchFromGitLab {
|
2018-05-03 07:58:32 -07:00
|
|
|
owner = "jD91mZM2";
|
|
|
|
repo = "xidlehook";
|
|
|
|
rev = version;
|
|
|
|
|
2020-03-15 13:19:32 -07:00
|
|
|
sha256 = "1zvr3vk76x0gsq6z5rrnliv2bvshsm8bhkspc41bbj4kniz4h5bw";
|
2018-05-03 07:58:32 -07:00
|
|
|
};
|
|
|
|
|
2018-06-08 23:40:00 -07:00
|
|
|
cargoBuildFlags = lib.optionals (!stdenv.isLinux) ["--no-default-features" "--features" "pulse"];
|
2020-03-15 13:19:32 -07:00
|
|
|
cargoSha256 = "0dxz5mbdc93xb02vnmd29i2kdh05c7vx9h28x5qgs3jvddyb3xmn";
|
2018-05-03 07:58:32 -07:00
|
|
|
|
2018-11-17 23:27:39 -08:00
|
|
|
buildInputs = [ xlibsWrapper xorg.libXScrnSaver libpulseaudio ] ++ lib.optional stdenv.isDarwin Security;
|
2019-11-23 04:30:22 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig patchelf python3 ];
|
2018-05-03 07:58:32 -07:00
|
|
|
|
2018-05-07 10:53:03 -07:00
|
|
|
postFixup = lib.optionalString stdenv.isLinux ''
|
2018-05-03 07:58:32 -07: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-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/jD91mZM2/xidlehook";
|
2018-05-03 07:58:32 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jD91mZM2 ];
|
|
|
|
platforms = platforms.unix;
|
2020-03-15 13:19:32 -07:00
|
|
|
badPlatforms = platforms.darwin;
|
2018-05-03 07:58:32 -07:00
|
|
|
};
|
|
|
|
}
|