mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
30 lines
726 B
Nix
30 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";
|
|
};
|
|
}
|