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

40 lines
1.2 KiB
Nix
Raw Normal View History

2019-11-23 12:30:22 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitLab, python3
, xlibsWrapper, xorg, libpulseaudio, pkgconfig, patchelf, Security }:
2018-05-03 15:58:32 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "xidlehook";
2019-11-23 12:30:22 +00:00
version = "0.8.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-11-23 12:30:22 +00:00
sha256 = "127b20y86xs2wq5ka236057nyrh87fgzhjqbl6azf002afnbsn5m";
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"];
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
2019-11-23 12:30:22 +00:00
cargoSha256 = "0jdkcxvlw7s8pz1ka3d2w97356a2axvlwfgyh2dz7nmfzpjx64x0";
2018-05-03 15:58:32 +01:00
buildInputs = [ xlibsWrapper xorg.libXScrnSaver libpulseaudio ] ++ lib.optional stdenv.isDarwin Security;
2019-11-23 12:30:22 +00:00
nativeBuildInputs = [ pkgconfig 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";
homepage = https://github.com/jD91mZM2/xidlehook;
license = licenses.mit;
maintainers = with maintainers; [ jD91mZM2 ];
platforms = platforms.unix;
};
}