biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / gxneur / default.nix
blob0bfc3ce91f65d3314a1653ec71c35d7adbdaa8bc
1 { lib, stdenv, fetchurl, pkg-config, intltool, gtk2, xorg, glib, xneur, libglade, GConf, libappindicator-gtk2, pcre }:
3 stdenv.mkDerivation rec {
4   pname = "gxneur";
5   version = "0.20.0";
7   src = fetchurl {
8     url = "https://github.com/AndrewCrewKuznetsov/xneur-devel/raw/f66723feb272c68f7c22a8bf0dbcafa5e3a8a5ee/dists/${version}/gxneur_${version}.orig.tar.gz";
9     sha256 = "0avmhdcj0hpr55fc0iih8fjykmdhn34c8mwdnqvl8jh4nhxxchxr";
10   };
12   # glib-2.62 deprecations
13   env.NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
15   nativeBuildInputs = [ pkg-config intltool ];
16   buildInputs = [
17     xorg.libX11
18     glib
19     gtk2
20     xorg.libXpm
21     xorg.libXt
22     xorg.libXext
23     xneur
24     libglade
25     GConf
26     pcre
27     libappindicator-gtk2
28   ];
30   meta = with lib; {
31     description = "GUI for XNEUR keyboard layout switcher";
32     platforms = platforms.linux;
33     license = with licenses; [ gpl2 gpl3 ];
34     mainProgram = "gxneur";
35   };