* nbd: fix build.

svn path=/nixpkgs/branches/x-updates/; revision=25952
This commit is contained in:
Eelco Dolstra 2011-02-14 10:24:18 +00:00
parent 5f85d4c19c
commit 8df800d92c

View File

@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
buildInputs = [pkgconfig glib]; buildInputs = [pkgconfig glib];
postInstall = ''install -D -m 444 README "$out/share/doc/nbd/README"''; postInstall = ''install -D -m 444 README "$out/share/doc/nbd/README"'';
# Glib calls `clock_gettime', which is in librt. Since we're using
# a static Glib, we need to pass it explicitly.
NIX_LDFLAGS = "-lrt";
meta = { meta = {
homepage = "http://nbd.sourceforge.net"; homepage = "http://nbd.sourceforge.net";
description = "map arbitrary files as block devices over the network"; description = "map arbitrary files as block devices over the network";