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

37 lines
1.1 KiB
Nix
Raw Normal View History

2018-10-28 10:33:56 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitLab
, xlibsWrapper, xorg, libpulseaudio, pkgconfig, patchelf }:
2018-05-03 14:58:32 +00:00
rustPlatform.buildRustPackage rec {
name = "xidlehook-${version}";
version = "0.6.0";
2018-06-09 06:40:00 +00:00
doCheck = false;
2018-05-03 14:58:32 +00:00
2018-10-28 10:33:56 +00:00
src = fetchFromGitLab {
2018-05-03 14:58:32 +00:00
owner = "jD91mZM2";
repo = "xidlehook";
rev = version;
sha256 = "0rmc0g5cizyzwpk4yyh7bda70x9ybaivc6iw441k6abxmzbh358g";
2018-05-03 14:58:32 +00:00
};
2018-06-09 06:40:00 +00:00
cargoBuildFlags = lib.optionals (!stdenv.isLinux) ["--no-default-features" "--features" "pulse"];
2018-10-28 10:33:56 +00:00
cargoSha256 = "1pdhbqnkgwp2v5zyin8z8049aq8c3kfk04v9wsbz8qla34rgi99s";
2018-05-03 14:58:32 +00:00
buildInputs = [ xlibsWrapper xorg.libXScrnSaver libpulseaudio ];
2018-05-03 14:58:32 +00:00
nativeBuildInputs = [ pkgconfig patchelf ];
2018-05-07 17:53:03 +00:00
postFixup = lib.optionalString stdenv.isLinux ''
2018-05-03 14:58:32 +00: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;
};
}