2018-07-16 01:44:32 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk2, xorg, glib, xneur, libglade, GConf, libappindicator-gtk2, pcre }:
|
2012-08-14 12:50:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-07-16 01:44:32 +02:00
|
|
|
name = "gxneur-0.20.0";
|
2018-07-16 01:33:57 +02:00
|
|
|
|
2012-08-14 12:50:25 +02:00
|
|
|
src = fetchurl {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "https://github.com/AndrewCrewKuznetsov/xneur-devel/raw/f66723feb272c68f7c22a8bf0dbcafa5e3a8a5ee/dists/0.20.0/gxneur_0.20.0.orig.tar.gz";
|
2018-07-16 01:44:32 +02:00
|
|
|
sha256 = "0avmhdcj0hpr55fc0iih8fjykmdhn34c8mwdnqvl8jh4nhxxchxr";
|
2012-08-14 12:50:25 +02:00
|
|
|
};
|
|
|
|
|
2019-10-03 20:18:43 +02:00
|
|
|
# glib-2.62 deprecations
|
2019-10-30 03:23:29 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
|
2018-10-17 09:02:32 +02:00
|
|
|
|
2018-07-16 01:44:32 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2012-08-14 12:50:25 +02:00
|
|
|
buildInputs = [
|
2018-07-16 01:33:57 +02:00
|
|
|
xorg.libX11 glib gtk2 xorg.libXpm xorg.libXt xorg.libXext xneur
|
2018-07-16 01:44:32 +02:00
|
|
|
libglade GConf pcre libappindicator-gtk2
|
2012-08-14 12:50:25 +02:00
|
|
|
];
|
|
|
|
|
2018-09-01 14:09:18 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-08-14 12:50:25 +02:00
|
|
|
description = "GUI for XNEUR keyboard layout switcher";
|
2018-09-01 14:09:18 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ gpl2 gpl3 ];
|
2012-08-14 12:50:25 +02:00
|
|
|
};
|
|
|
|
}
|