mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
xidlehook: init at 0.4.6
This commit is contained in:
parent
8ce802e8c8
commit
cf09900bbc
32
pkgs/tools/X11/xidlehook/default.nix
Normal file
32
pkgs/tools/X11/xidlehook/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub, x11, xorg, libpulseaudio, pkgconfig, patchelf }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "xidlehook-${version}";
|
||||
version = "0.4.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jD91mZM2";
|
||||
repo = "xidlehook";
|
||||
rev = version;
|
||||
|
||||
sha256 = "0h84ichm1v2wdmm4w1n7jr70yfb9hhi7kykvd99ppg00h1x9lr7w";
|
||||
};
|
||||
|
||||
cargoSha256 = "0a1bl6fnfw6xy71q3b5zij52p9skylj1ivqj8my44bfsid2qfn7d";
|
||||
|
||||
buildInputs = [ x11 xorg.libXScrnSaver libpulseaudio ];
|
||||
nativeBuildInputs = [ pkgconfig patchelf ];
|
||||
|
||||
postFixup = ''
|
||||
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;
|
||||
};
|
||||
}
|
@ -5770,6 +5770,8 @@ with pkgs;
|
||||
|
||||
xiccd = callPackage ../tools/misc/xiccd { };
|
||||
|
||||
xidlehook = callPackage ../tools/X11/xidlehook {};
|
||||
|
||||
xorriso = callPackage ../tools/cd-dvd/xorriso { };
|
||||
|
||||
xpf = callPackage ../tools/text/xml/xpf {
|
||||
|
Loading…
Reference in New Issue
Block a user