biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / xneur / default.nix
blobe282d84f9c931752f1a56ddfacf8dd8b7c63c742
1 { stdenv
2 , lib
3 , fetchurl
4 , fetchpatch
5 , autoreconfHook
6 , intltool
7 , pkg-config
8 , wrapGAppsHook
9 , enchant
10 , gdk-pixbuf
11 , glib
12 , gst_all_1
13 , libnotify
14 , pcre
15 , xorg
16 , xosd
19 stdenv.mkDerivation {
20   pname = "xneur";
21   version = "0.20.0";
23   src = fetchurl {
24     url = "https://github.com/AndrewCrewKuznetsov/xneur-devel/raw/f66723feb272c68f7c22a8bf0dbcafa5e3a8a5ee/dists/0.20.0/xneur_0.20.0.orig.tar.gz";
25     sha256 = "1lg3qpi9pkx9f5xvfc8yf39wwc98f769yb7i2438vqn66kla1xpr";
26   };
28   nativeBuildInputs = [
29     autoreconfHook
30     intltool
31     pkg-config
32     wrapGAppsHook
33   ];
35   buildInputs = [
36     enchant
37     gdk-pixbuf
38     glib
39     gst_all_1.gst-plugins-base
40     gst_all_1.gst-plugins-good
41     gst_all_1.gstreamer
42     libnotify
43     pcre
44     xorg.libX11
45     xorg.libXext
46     xorg.libXi
47     xorg.libXtst
48     xosd
49   ];
51   patches = [
52     (fetchpatch {
53       name = "gcc-10.patch";
54       url = "https://salsa.debian.org/debian/xneur/-/raw/da38ad9c8e1bf4e349f5ed4ad909f810fdea44c9/debian/patches/gcc-10.patch";
55       sha256 = "0pc17a4sdrnrc4z7gz28889b9ywqsm5mzm6m41h67j2f5zh9k3fy";
56     })
57     (fetchpatch {
58       name = "enchant2.patch";
59       url = "https://salsa.debian.org/debian/xneur/-/raw/695b0fea56cde4ff6cf0f3988218c5cb9d7ff5ae/debian/patches/enchant2.patch";
60       sha256 = "02a3kkfzdvs5f8dfm6j5x3jcn5j8qah9ykfymp6ffqsf4fijp65n";
61     })
62   ];
64   postPatch = ''
65     sed -e 's@for xosd_dir in@for xosd_dir in ${xosd} @' -i configure.ac
66   '';
68   meta = with lib; {
69     description = "Utility for switching between keyboard layouts";
70     mainProgram = "xneur";
71     homepage = "https://xneur.ru";
72     license = licenses.gpl2Plus;
73     maintainers = [ maintainers.raskin ];
74     platforms = platforms.linux;
75   };