xkb-switch: Update

+11 -9
+11 -9
pkgs/tools/X11/xkb-switch/default.nix
··· 1 1 { stdenv, fetchgit, cmake, libX11 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "xkb-switch-1.2"; 4 + name = "xkb-switch-${version}"; 5 + version = "1.3.1"; 5 6 6 7 src = fetchgit { 7 8 url = https://github.com/ierton/xkb-switch.git; 8 - rev = "4c90511ecf2cacc040c97f034a13254c3fa9dfef"; 9 - sha256 = "1jxya67v1qnvbzd0cd5gj7xrwvxyfy1rpa70l8p30p9cmw3ahk41"; 9 + rev = "351c84370ad0fa4aaaab9a32817859b1d5fb2a11"; 10 + sha256 = "0ilj3amwidi7imjvi8hr62y7j8zl809r5xhs7kv816773x32gpxq"; 10 11 }; 11 12 12 13 buildInputs = [ cmake libX11 ]; 13 14 14 - meta = { 15 - description = "Switch X layouts from the command line"; 16 - homepage = https://github.com/ierton/xkb-switch.git; 17 - maintainers = with stdenv.lib.maintainers; [smironov]; 18 - platforms = stdenv.lib.platforms.gnu; 19 - license = "BSD"; 15 + meta = with stdenv.lib; { 16 + description = "Switch your X keyboard layouts from the command line"; 17 + 18 + homepage = https://github.com/ierton/xkb-switch; 19 + license = licenses.gpl2Plus; 20 + maintainers = with maintainers; [ smironov ]; 21 + platforms = platforms.linux; 20 22 }; 21 23 } 22 24