xkb-switch: Update

This commit is contained in:
Kirill Elagin 2015-01-04 02:48:05 +03:00
parent 6b8b0fd544
commit 75e211b102

View file

@ -1,22 +1,24 @@
{ stdenv, fetchgit, cmake, libX11 }: { stdenv, fetchgit, cmake, libX11 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "xkb-switch-1.2"; name = "xkb-switch-${version}";
version = "1.3.1";
src = fetchgit { src = fetchgit {
url = https://github.com/ierton/xkb-switch.git; url = https://github.com/ierton/xkb-switch.git;
rev = "4c90511ecf2cacc040c97f034a13254c3fa9dfef"; rev = "351c84370ad0fa4aaaab9a32817859b1d5fb2a11";
sha256 = "1jxya67v1qnvbzd0cd5gj7xrwvxyfy1rpa70l8p30p9cmw3ahk41"; sha256 = "0ilj3amwidi7imjvi8hr62y7j8zl809r5xhs7kv816773x32gpxq";
}; };
buildInputs = [ cmake libX11 ]; buildInputs = [ cmake libX11 ];
meta = { meta = with stdenv.lib; {
description = "Switch X layouts from the command line"; description = "Switch your X keyboard layouts from the command line";
homepage = https://github.com/ierton/xkb-switch.git;
maintainers = with stdenv.lib.maintainers; [smironov]; homepage = https://github.com/ierton/xkb-switch;
platforms = stdenv.lib.platforms.gnu; license = licenses.gpl2Plus;
license = "BSD"; maintainers = with maintainers; [ smironov ];
platforms = platforms.linux;
}; };
} }