nixpkgs/pkgs/tools/misc/x11idle/default.nix
Patrick Hilhorst 593e11fd94
treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.

The following script was used to make these updates:

```

curl https://repology.org/api/v1/repository/nix_unstable/problems \
    | jq '.[] | .problem' -r \
    | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
    | sort | uniq > script.sed

find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00

34 lines
927 B
Nix

{ stdenv, fetchgit, libXScrnSaver, libX11 }:
stdenv.mkDerivation {
name = "x11idle-unstable-2017-07-01";
src = fetchgit {
url = "git://orgmode.org/org-mode.git";
rev = "fbd865941f3105f689f78bf053bb3b353b9b8a23";
sha256 = "0ma3m48f4s38xln0gl1ww9i5x28ij0ipxc94kx5h2931zy7lqzvz";
};
buildInputs = [ libXScrnSaver libX11 ];
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
gcc -lXss -lX11 $src/contrib/scripts/x11idle.c -o $out/bin/x11idle
'';
meta = with stdenv.lib; {
description = ''
Compute consecutive idle time for current X11 session with millisecond resolution
'';
longDescription = ''
Idle time passes when the user does not act, i.e. when the user doesn't move the mouse or use the keyboard.
'';
homepage = https://orgmode.org/;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.swflint ];
};
}