summary refs log tree commit diff
path: root/pkgs/tools/X11/xchainkeys/default.nix
blob: 5c154f8a1116dd0811ae30fd53a86c205bfc2a07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, libX11 }:

stdenv.mkDerivation rec {
  pname = "xchainkeys";
  version = "0.11";

  src = fetchurl {
    url = "http://henning-bekel.de/download/xchainkeys/xchainkeys-${version}.tar.gz";
    sha256 = "1rpqs7h5krral08vqxwb0imy33z17v5llvrg5hy8hkl2ap7ya0mn";
  };

  buildInputs = [ libX11 ];

  meta = {
    homepage = "http://henning-bekel.de/xchainkeys/";
    description = "A standalone X11 program to create chained key bindings";
    license = lib.licenses.gpl3;
    platforms = lib.platforms.unix;
  };
}