nixpkgs/pkgs/applications/misc/xkblayout-state/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
726 B
Nix
Raw Normal View History

2022-05-26 03:43:10 +03:00
{ lib, stdenv, fetchFromGitHub, libX11 }:
2015-02-23 20:48:31 +03:00
stdenv.mkDerivation rec {
2015-04-10 23:44:34 +03:00
pname = "xkblayout-state";
2015-02-23 20:48:31 +03:00
version = "1b";
src = fetchFromGitHub {
owner = "nonpop";
repo = "xkblayout-state";
rev = "v${version}";
sha256 = "sha256-diorqwDEBdzcBteKvhRisQaY3bx5seaOaWSaPwBkWDo=";
2015-02-23 20:48:31 +03:00
};
2022-05-26 03:43:10 +03:00
buildInputs = [ libX11 ];
2015-02-23 20:48:31 +03:00
installPhase = ''
mkdir -p $out/bin
cp xkblayout-state $out/bin
'';
meta = with lib; {
2015-02-23 20:48:31 +03:00
description = "Small command-line program to get/set the current XKB keyboard layout";
homepage = "https://github.com/nonpop/xkblayout-state";
2015-02-23 20:48:31 +03:00
license = licenses.gpl2;
maintainers = [ maintainers.jagajaga ];
platforms = platforms.linux;
2024-02-11 05:19:15 +03:00
mainProgram = "xkblayout-state";
2015-02-23 20:48:31 +03:00
};
}