Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

udisks1: bump to fix CVE-2014-0004

Also systemd unit is now installed.
Thanks to nixpkgs monitor again, as for all my CVE commits.

+7 -3
+7 -3
pkgs/os-specific/linux/udisks/1-default.nix
··· 3 3 , libxslt, docbook_xsl, utillinux }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "udisks-1.0.4"; 6 + name = "udisks-1.0.5"; 7 7 8 8 src = fetchurl { 9 9 url = "http://hal.freedesktop.org/releases/${name}.tar.gz"; 10 - sha256 = "1xgqifddwaavmjc8c30i0mdffyirsld7c6qhfyjw7f9khwv8jjw5"; 10 + sha256 = "0wbg3jrv8limdgvcygf4dqin3y6d30y9pcmmk711vq571vmq5v7j"; 11 11 }; 12 12 13 13 patches = [ ./purity.patch ./no-pci-db.patch ]; ··· 28 28 29 29 nativeBuildInputs = [ pkgconfig ]; 30 30 31 - configureFlags = "--localstatedir=/var --enable-lvm2"; 31 + configureFlags = [ 32 + "--localstatedir=/var" 33 + "--enable-lvm2" 34 + "--with-systemdsystemunitdir=$(out)/etc/systemd/system" 35 + ]; 32 36 33 37 meta = { 34 38 homepage = http://www.freedesktop.org/wiki/Software/udisks;