2021-05-08 04:59:07 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, intltool, xorg, pcre, gst_all_1, glib
|
2019-05-22 11:03:39 +00:00
|
|
|
, xosd, libnotify, enchant, wrapGAppsHook, gdk-pixbuf }:
|
2009-09-17 03:42:01 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "xneur";
|
2018-07-15 23:33:57 +00:00
|
|
|
version = "0.20.0";
|
|
|
|
|
2008-03-20 09:51:05 +00:00
|
|
|
src = fetchurl {
|
2018-07-15 23:33:57 +00:00
|
|
|
url = "https://github.com/AndrewCrewKuznetsov/xneur-devel/raw/f66723feb272c68f7c22a8bf0dbcafa5e3a8a5ee/dists/0.20.0/xneur_0.20.0.orig.tar.gz";
|
|
|
|
sha256 = "1lg3qpi9pkx9f5xvfc8yf39wwc98f769yb7i2438vqn66kla1xpr";
|
2008-03-20 09:51:05 +00:00
|
|
|
};
|
|
|
|
|
2018-07-15 23:33:57 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:09:27 +00:00
|
|
|
pkg-config intltool wrapGAppsHook
|
2018-07-15 23:33:57 +00:00
|
|
|
];
|
2008-11-03 19:16:21 +00:00
|
|
|
|
2018-07-15 23:33:57 +00:00
|
|
|
buildInputs = [
|
|
|
|
xorg.libX11 xorg.libXtst pcre gst_all_1.gstreamer glib
|
|
|
|
xosd xorg.libXext xorg.libXi libnotify
|
2019-05-22 11:03:39 +00:00
|
|
|
enchant gdk-pixbuf
|
2018-07-15 23:33:57 +00:00
|
|
|
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
|
|
|
];
|
2009-08-05 10:25:17 +00:00
|
|
|
|
2021-05-08 04:59:07 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "gcc-10.patch";
|
|
|
|
url = "https://salsa.debian.org/debian/xneur/-/raw/da38ad9c8e1bf4e349f5ed4ad909f810fdea44c9/debian/patches/gcc-10.patch";
|
|
|
|
sha256 = "0pc17a4sdrnrc4z7gz28889b9ywqsm5mzm6m41h67j2f5zh9k3fy";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-07-15 23:33:57 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -e 's@for xosd_dir in@for xosd_dir in ${xosd} @' -i configure
|
2008-11-03 19:16:21 +00:00
|
|
|
'';
|
2008-03-20 09:51:05 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2010-07-28 18:01:17 +00:00
|
|
|
description = "Utility for switching between keyboard layouts";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://xneur.ru";
|
2018-07-15 23:33:57 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2008-03-20 09:51:05 +00:00
|
|
|
};
|
|
|
|
}
|