tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xkb-switch: Update
Kirill Elagin
11 years ago
75e211b1
6b8b0fd5
+11
-9
1 changed file
expand all
collapse all
unified
split
pkgs
tools
X11
xkb-switch
default.nix
+11
-9
pkgs/tools/X11/xkb-switch/default.nix
···
1
1
{ stdenv, fetchgit, cmake, libX11 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "xkb-switch-1.2";
4
4
+
name = "xkb-switch-${version}";
5
5
+
version = "1.3.1";
5
6
6
7
src = fetchgit {
7
8
url = https://github.com/ierton/xkb-switch.git;
8
8
-
rev = "4c90511ecf2cacc040c97f034a13254c3fa9dfef";
9
9
-
sha256 = "1jxya67v1qnvbzd0cd5gj7xrwvxyfy1rpa70l8p30p9cmw3ahk41";
9
9
+
rev = "351c84370ad0fa4aaaab9a32817859b1d5fb2a11";
10
10
+
sha256 = "0ilj3amwidi7imjvi8hr62y7j8zl809r5xhs7kv816773x32gpxq";
10
11
};
11
12
12
13
buildInputs = [ cmake libX11 ];
13
14
14
14
-
meta = {
15
15
-
description = "Switch X layouts from the command line";
16
16
-
homepage = https://github.com/ierton/xkb-switch.git;
17
17
-
maintainers = with stdenv.lib.maintainers; [smironov];
18
18
-
platforms = stdenv.lib.platforms.gnu;
19
19
-
license = "BSD";
15
15
+
meta = with stdenv.lib; {
16
16
+
description = "Switch your X keyboard layouts from the command line";
17
17
+
18
18
+
homepage = https://github.com/ierton/xkb-switch;
19
19
+
license = licenses.gpl2Plus;
20
20
+
maintainers = with maintainers; [ smironov ];
21
21
+
platforms = platforms.linux;
20
22
};
21
23
}
22
24