about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/xkblayout-state/default.nix
blob: 4d1dd54bba6c47756b7235b4ac7202f1f4bc3e3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, fetchurl, qt4 }:

stdenv.mkDerivation rec {
  pname = "xkblayout-state";
  version = "1b";

  src = fetchurl {
    url = "https://github.com/nonpop/${pname}/archive/v${version}.tar.gz";
    sha256 = "1m1nnplrdb2mclhj0881wf78ckvdnyk24g4k4p5s5gpd96cxxwnx";
  };

  buildInputs = [ qt4 ];

  installPhase = ''
    mkdir -p $out/bin
    cp xkblayout-state $out/bin
  '';

  meta = with lib; {
    description = "A small command-line program to get/set the current XKB keyboard layout";
    homepage = "https://github.com/nonpop/xkblayout-state";
    license = licenses.gpl2;
    maintainers = [ maintainers.jagajaga ];
    platforms = platforms.linux;
  };
}