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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
534 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv, fetchurl, libX11 }:
2013-03-08 06:55:32 +01:00
stdenv.mkDerivation rec {
pname = "xchainkeys";
version = "0.11";
2013-03-08 06:55:32 +01:00
src = fetchurl {
url = "http://henning-bekel.de/download/xchainkeys/xchainkeys-${version}.tar.gz";
2013-03-08 06:55:32 +01:00
sha256 = "1rpqs7h5krral08vqxwb0imy33z17v5llvrg5hy8hkl2ap7ya0mn";
};
buildInputs = [ libX11 ];
meta = {
homepage = "http://henning-bekel.de/xchainkeys/";
2013-03-08 06:55:32 +01:00
description = "A standalone X11 program to create chained key bindings";
2021-01-15 10:19:50 +01:00
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
2013-03-08 06:55:32 +01:00
};
}