b11e1305b5
We should probably update to udisks2, but I'm not sure if it's compatible at the D-Bus interface level. http://hydra.nixos.org/build/3488623
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, sg3_utils, udev, glib, dbus, dbus_glib
|
|
, polkit, parted, lvm2, libatasmart, intltool, libuuid, mdadm
|
|
, libxslt, docbook_xsl, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "udisks-1.0.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://hal.freedesktop.org/releases/${name}.tar.gz";
|
|
sha256 = "1xgqifddwaavmjc8c30i0mdffyirsld7c6qhfyjw7f9khwv8jjw5";
|
|
};
|
|
|
|
patches = [ ./purity.patch ./no-pci-db.patch ];
|
|
|
|
postPatch =
|
|
''
|
|
sed -e 's,/sbin/mdadm,${mdadm}&,g' -e "s,@slashlibdir@,$out/lib,g" -i data/80-udisks.rules
|
|
|
|
substituteInPlace src/main.c --replace \
|
|
"/sbin:/bin:/usr/sbin:/usr/bin" \
|
|
"${utillinux}/bin:${mdadm}/sbin:/var/run/current-system/sw/bin:/var/run/current-system/sw/sbin"
|
|
'';
|
|
|
|
buildInputs =
|
|
[ sg3_utils udev glib dbus dbus_glib polkit parted
|
|
lvm2 libatasmart intltool libuuid libxslt docbook_xsl
|
|
];
|
|
|
|
buildNativeInputs = [ pkgconfig ];
|
|
|
|
configureFlags = "--localstatedir=/var --enable-lvm2";
|
|
|
|
meta = {
|
|
homepage = http://www.freedesktop.org/wiki/Software/udisks;
|
|
description = "A daemon and command-line utility for querying and manipulating storage devices";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|