mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Try protecting FreeBSD from instntiating TinyCC
svn path=/nixpkgs/trunk/; revision=13184
This commit is contained in:
parent
4e3a66df31
commit
9e48add3e0
@ -3,13 +3,19 @@ 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";
|
||||
url = "http://dists.xneur.ru/release-0.9.2/tgz/xneur-0.9.2.tar.bz2";
|
||||
sha256 = "1zk13ixd82nq8a2rzmmk53xy2iphydf57mfb2ndfil21rkffr0jq";
|
||||
};
|
||||
|
||||
buildInputs = [libX11 pkgconfig pcre GStreamer glib libxml2 aspell];
|
||||
buildInputs = [libX11 pkgconfig pcre GStreamer glib libxml2 aspell
|
||||
libXpm];
|
||||
|
||||
preConfigure = "sed -e 's/-Werror//' -i configure";
|
||||
inherit aspell;
|
||||
|
||||
preConfigure = ''
|
||||
sed -e 's/-Werror//' -i configure
|
||||
sed -e 's/for aspell_dir in/for aspell_dir in $aspell /' -i configure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "xneur is the keyboard layout switcher.";
|
||||
|
@ -1,5 +1,7 @@
|
||||
{ stdenv, fetchurl, perl, texinfo }:
|
||||
|
||||
assert stdenv ? glibc;
|
||||
|
||||
let version = "0.9.24"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "tinycc-${version}";
|
||||
|
@ -8061,7 +8061,7 @@ let
|
||||
xneur = import ../applications/misc/xneur {
|
||||
inherit fetchurl stdenv pkgconfig pcre libxml2 aspell;
|
||||
GStreamer=gst_all.gstreamer;
|
||||
inherit (xlibs) libX11;
|
||||
inherit (xlibs) libX11 libXpm;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user