995a44a897
installed before we daemonise, otherwise another job might send USR1 to mountall before the handler is installed, killing it. svn path=/nixpkgs/trunk/; revision=33289
25 lines
910 B
Nix
25 lines
910 B
Nix
{ stdenv, fetchurl, pkgconfig, libnih, dbus, udev, autoconf, automake, libtool, gettext }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mountall-2.35";
|
|
|
|
src = fetchurl {
|
|
url = https://launchpad.net/ubuntu/+archive/primary/+files/mountall_2.35.tar.gz;
|
|
sha256 = "1k52d4x75balnwcsqgznvzrdqgbp2dqnrzw0n25kajdcwr192wwy";
|
|
};
|
|
|
|
patches = [ ./no-plymouth.patch ./fix-usr1-race.patch ];
|
|
|
|
preConfigure = "rm -R aclocal.m4; gettextize -f; autoreconf -vfi";
|
|
|
|
buildInputs = [ pkgconfig libnih dbus.libs udev autoconf automake libtool gettext ];
|
|
|
|
makeFlags = "initramfshookdir=$(out)/share/initramfs-tools/hooks upstart_jobs_initramfs_configdir=$(out)/share/initramfs-tools/event-driven/upstart-jobs";
|
|
|
|
meta = {
|
|
homepage = https://launchpad.net/ubuntu/+source/mountall;
|
|
description = "Utility to mount all filesystems and emit Upstart events";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|