mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Added back old XNeur version (did not have XIM bug)
svn path=/nixpkgs/trunk/; revision=13739
This commit is contained in:
parent
1ef61a2580
commit
2f770f46e4
26
pkgs/applications/misc/xneur/0.8.nix
Normal file
26
pkgs/applications/misc/xneur/0.8.nix
Normal file
@ -0,0 +1,26 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name="xneur";
|
||||
src = fetchurl {
|
||||
url = http://dists.xneur.ru/release-0.8.0/tgz/xneur-0.8.0.tar.bz2;
|
||||
sha256 = "1f05bm4vqdrlm8rxwgqv89k5lhc236xg841aw4snw514g0hi2sl8";
|
||||
};
|
||||
|
||||
buildInputs = [libX11 pkgconfig pcre GStreamer glib libxml2 aspell
|
||||
libXpm imlib2 xosd libXt libXext];
|
||||
|
||||
inherit aspell imlib2 xosd;
|
||||
|
||||
preConfigure = ''
|
||||
sed -e 's/-Werror//' -i configure
|
||||
sed -e 's/for aspell_dir in/for aspell_dir in $aspell /' -i configure
|
||||
sed -e 's/for imlib2_dir in/for imlib2_dir in $imlib2 /' -i configure
|
||||
sed -e 's/for xosd_dir in/for xosd_dir in $xosd /' -i configure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "xneur is the keyboard layout switcher.";
|
||||
};
|
||||
|
||||
}
|
@ -8251,6 +8251,13 @@ let
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
xneur_0_8 = import ../applications/misc/xneur/0.8.nix {
|
||||
inherit fetchurl stdenv pkgconfig pcre libxml2 aspell imlib2 xosd;
|
||||
GStreamer=gst_all.gstreamer;
|
||||
inherit (xlibs) libX11 libXpm libXt libXext;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
xpdf = import ../applications/misc/xpdf {
|
||||
inherit fetchurl stdenv x11 freetype t1lib;
|
||||
motif = lesstif;
|
||||
|
Loading…
Reference in New Issue
Block a user