Link nbd package statically.

svn path=/nixpkgs/trunk/; revision=17470
This commit is contained in:
Peter Simons 2009-09-28 15:10:55 +00:00
parent 8d09b96e84
commit 045e10fe15

View File

@ -13,8 +13,8 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [pkgconfig glib]; buildInputs = [pkgconfig glib];
# Desirable, but doesn't work because glib is compiled without static # Link this package statically to generate an nbd-server binary that
# libraries by default: # has no dynamic dependencies and that can be used on (non-Nix) remote
# # machines that have a different setup than the local one.
# configureFlags = "LDFLAGS=-static"; configureFlags = "LDFLAGS=-static";
} }