nixpkgs/pkgs/by-name/g3/g3kb-switch/package.nix

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

36 lines
761 B
Nix
Raw Normal View History

2024-03-14 02:44:25 +00:00
{ lib
, stdenv
, cmake
, pkg-config
, glib
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "g3kb-switch";
2024-05-27 01:10:34 +00:00
version = "1.5";
2024-03-14 02:44:25 +00:00
src = fetchFromGitHub {
owner = "lyokha";
repo = "g3kb-switch";
rev = version;
hash = "sha256-kTJfV0xQmWuxibUlfC1qJX2J2nrZ4wimdf/nGciQq0Y=";
2024-03-14 02:44:25 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
glib
];
meta = with lib; {
homepage = "https://github.com/lyokha/g3kb-switch";
2024-06-16 20:48:03 +00:00
changelog = "https://github.com/lyokha/g3kb-switch/releases/tag/${src.rev}";
2024-03-14 02:44:25 +00:00
description = "CLI keyboard layout switcher for GNOME Shell";
mainProgram = "g3kb-switch";
2024-03-14 02:44:25 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ Freed-Wu ];
platforms = platforms.unix;
};
}