nbd: remove NIX_LDFLAGS hack

There is no Linux libc supported by Nixpkgs where these are separate
libraries any more.  (They're empty stubs.)
This commit is contained in:
Alyssa Ross 2023-01-23 15:55:58 +00:00
parent c5c7778f09
commit 35424a99fd
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -25,11 +25,6 @@ stdenv.mkDerivation rec {
test = nixosTests.nbd;
};
# Glib calls `clock_gettime', which is in librt. Linking that library
# here ensures that a proper rpath is added to the executable so that
# it can be loaded at run-time.
NIX_LDFLAGS = lib.optionalString stdenv.isLinux "-lrt -lpthread";
meta = {
homepage = "https://nbd.sourceforge.io/";
description = "Map arbitrary files as block devices over the network";