mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
* Obscure bug: Zapping needs gettext, otherwise the Automake variable
DATADIRNAME is not set. svn path=/nixpkgs/trunk/; revision=682
This commit is contained in:
parent
823b3e4770
commit
50405c5948
@ -1,7 +1,7 @@
|
||||
#! /bin/sh
|
||||
|
||||
buildinputs="$pkgconfig $perl $python $x11 $libgnomeui \
|
||||
$libglade $scrollkeeper $esound"
|
||||
$libglade $scrollkeeper $esound $gettext"
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
# !!! hack; this is because $linuxHeaders/config.h includes some
|
||||
|
@ -1,15 +1,15 @@
|
||||
{ stdenv, fetchurl, pkgconfig, perl, python, x11, libgnomeui
|
||||
, libglade, scrollkeeper, esound }:
|
||||
, libglade, scrollkeeper, esound, gettext }:
|
||||
|
||||
assert !isNull pkgconfig && !isNull perl && !isNull python &&
|
||||
!isNull x11 && !isNull libgnomeui && !isNull libglade &&
|
||||
!isNull scrollkeeper && !isNull esound;
|
||||
!isNull scrollkeeper && !isNull esound && !isNull gettext;
|
||||
|
||||
# !!! zvbi library
|
||||
# !!! arts, jpeg, png, rte
|
||||
|
||||
derivation {
|
||||
name = "zapping-0.6.8";
|
||||
name = "zapping-0.7cvs6";
|
||||
system = stdenv.system;
|
||||
|
||||
builder = ./builder.sh;
|
||||
@ -27,4 +27,5 @@ derivation {
|
||||
libglade = libglade;
|
||||
scrollkeeper = scrollkeeper;
|
||||
esound = esound;
|
||||
gettext = gettext;
|
||||
}
|
||||
|
@ -751,6 +751,7 @@
|
||||
libglade = libglade;
|
||||
scrollkeeper = scrollkeeper;
|
||||
esound = esound;
|
||||
gettext = gettext;
|
||||
};
|
||||
|
||||
gqview = (import ../applications/graphics/gqview) {
|
||||
|
Loading…
Reference in New Issue
Block a user