aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2019-07-16 05:42:08 +0000
committerGitHub <noreply@github.com>2019-07-16 05:42:08 +0000
commitbe03f0a2b5991ac2095f27ce1292ba41ff8def93 (patch)
tree2648b1455f63632696ade4cd8454165020e00ba0 /pkgs/tools/X11
parent9a1d795ce71bf15249cb291c4406a94619f5447c (diff)
parent4384bacbf3eb0942799c1d220dcb202dce5304d7 (diff)
Merge pull request #64805 from peterhoeg/u/xcape
xcape: 1.2 -> 20180301
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/xcape/default.nix29
1 files changed, 14 insertions, 15 deletions
diff --git a/pkgs/tools/X11/xcape/default.nix b/pkgs/tools/X11/xcape/default.nix
index fae2d56fbbe..8b0c18c8618 100644
--- a/pkgs/tools/X11/xcape/default.nix
+++ b/pkgs/tools/X11/xcape/default.nix
@@ -1,30 +1,29 @@
{ stdenv, fetchFromGitHub, pkgconfig, libX11, libXtst, xorgproto,
libXi }:
-let
- baseName = "xcape";
- version = "1.2";
-in
-
stdenv.mkDerivation rec {
- name = "${baseName}-${version}";
+ pname = "xcape";
+ version = "unstable-20180301";
src = fetchFromGitHub {
owner = "alols";
- repo = baseName;
- rev = "v${version}";
- sha256 = "09a05cxgrip6nqy1qmwblamp2bhknqnqmxn7i2a1rgxa0nba95dm";
+ repo = pname;
+ rev = "a34d6bae27bbd55506852f5ed3c27045a3c0bd9e";
+ sha256 = "04grs4w9kpfzz25mqw82zdiy51g0w355gpn5b170p7ha5972ykc8";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 libXtst xorgproto libXi ];
- makeFlags = [ "PREFIX=$(out)" "MANDIR=/share/man/man1" ];
+ makeFlags = [
+ "PREFIX=$(out)"
+ "MANDIR=/share/man/man1"
+ ];
- postInstall = "install -D --target-directory $out/share/doc README.md";
+ postInstall = "install -Dm444 --target-directory $out/share/doc README.md";
- meta = {
+ meta = with stdenv.lib; {
description = "Utility to configure modifier keys to act as other keys";
longDescription = ''
xcape allows you to use a modifier key as another key when
@@ -35,8 +34,8 @@ stdenv.mkDerivation rec {
released on its own.
'';
homepage = https://github.com/alols/xcape;
- license = stdenv.lib.licenses.gpl3 ;
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.raskin ];
+ license = licenses.gpl3 ;
+ maintainers = with maintainers; [ raskin ];
+ platforms = platforms.linux;
};
}