nixpkgs/pkgs/os-specific/linux/mountall/default.nix
Lluís Batlle i Rossell 2c5de61327 Updating from trunk.
svn path=/nixpkgs/branches/stdenv-updates/; revision=23840
2010-09-17 19:10:21 +00:00

23 lines
728 B
Nix

{ stdenv, fetchurl, pkgconfig, libnih, dbus, udev, autoconf, automake, libtool, gettext }:
stdenv.mkDerivation {
name = "mountall-2.15";
src = fetchurl {
url = https://launchpad.net/ubuntu/+archive/primary/+files/mountall_2.15.tar.gz;
sha256 = "1ik9r1av0f17byfxr4l2w0qpaijxkfqvxws6gmc98liq6fyyzn4v";
};
patches = [ ./no-plymouth.patch ];
preConfigure = "rm -R aclocal.m4; gettextize -f; autoreconf -vfi";
buildInputs = [ pkgconfig libnih dbus.libs udev autoconf automake libtool gettext ];
meta = {
homepage = https://launchpad.net/ubuntu/+source/mountall;
description = "Utility to mount all filesystems and emit Upstart events";
platforms = stdenv.lib.platforms.linux;
};
}