From 1451109c95ec2ca6712129d76e7c5df2ad15bd96 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 7 Feb 2012 19:54:28 +0000 Subject: [PATCH] nbd: linking with -lrt is no longer necessary because we don't link glib statically anymore svn path=/nixpkgs/trunk/; revision=32126 --- pkgs/tools/networking/nbd/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/tools/networking/nbd/default.nix b/pkgs/tools/networking/nbd/default.nix index 60eea0e2d9e0..26272424749c 100644 --- a/pkgs/tools/networking/nbd/default.nix +++ b/pkgs/tools/networking/nbd/default.nix @@ -20,10 +20,6 @@ stdenv.mkDerivation { # that certain global configuration files available. doCheck = false; - # 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 = { homepage = "http://nbd.sourceforge.net"; description = "map arbitrary files as block devices over the network";