Making mountall build on mips.

svn path=/nixpkgs/branches/stdenv-updates/; revision=23494
This commit is contained in:
Lluís Batlle i Rossell 2010-08-29 09:59:52 +00:00
parent ffef67e28f
commit 5557a869a0

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, libnih, dbus, udev, autoconf, automake, libtool }: { stdenv, fetchurl, pkgconfig, libnih, dbus, udev, autoconf, automake, libtool, gettext }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "mountall-2.15"; name = "mountall-2.15";
@ -10,9 +10,9 @@ stdenv.mkDerivation {
patches = [ ./no-plymouth.patch ]; patches = [ ./no-plymouth.patch ];
preConfigure = "rm aclocal.m4; autoreconf"; preConfigure = "rm -R aclocal.m4; gettextize -f; autoreconf -vfi";
buildInputs = [ pkgconfig libnih dbus.libs udev autoconf automake libtool ]; buildInputs = [ pkgconfig libnih dbus.libs udev autoconf automake libtool gettext ];
meta = { meta = {
homepage = https://launchpad.net/ubuntu/+source/mountall; homepage = https://launchpad.net/ubuntu/+source/mountall;