mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / g3 / g3kb-switch / package.nix
blob49ccd04573daddd2b02d16136f5e70134a40add5
1 { lib
2 , stdenv
3 , cmake
4 , pkg-config
5 , glib
6 , fetchFromGitHub
7 }:
8 stdenv.mkDerivation rec {
9   pname = "g3kb-switch";
10   version = "1.5";
11   src = fetchFromGitHub {
12     owner = "lyokha";
13     repo = "g3kb-switch";
14     rev = version;
15     hash = "sha256-kTJfV0xQmWuxibUlfC1qJX2J2nrZ4wimdf/nGciQq0Y=";
16   };
18   nativeBuildInputs = [
19     cmake
20     pkg-config
21   ];
22   buildInputs = [
23     glib
24   ];
26   meta = with lib; {
27     homepage = "https://github.com/lyokha/g3kb-switch";
28     changelog = "https://github.com/lyokha/g3kb-switch/releases/tag/${src.rev}";
29     description = "CLI keyboard layout switcher for GNOME Shell";
30     mainProgram = "g3kb-switch";
31     license = licenses.bsd2;
32     maintainers = with maintainers; [ Freed-Wu ];
33     platforms = platforms.unix;
34   };