depot/pkgs/applications/misc/xkblayout-state/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

29 lines
726 B
Nix

{ lib, stdenv, fetchFromGitHub, libX11 }:
stdenv.mkDerivation rec {
pname = "xkblayout-state";
version = "1b";
src = fetchFromGitHub {
owner = "nonpop";
repo = "xkblayout-state";
rev = "v${version}";
sha256 = "sha256-diorqwDEBdzcBteKvhRisQaY3bx5seaOaWSaPwBkWDo=";
};
buildInputs = [ libX11 ];
installPhase = ''
mkdir -p $out/bin
cp xkblayout-state $out/bin
'';
meta = with lib; {
description = "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;
mainProgram = "xkblayout-state";
};
}