lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lzlib: fix darwin build

authored by

Stanisław Pitucha and committed by
ehmry
6d7127b1 4e9c9c0b

+4
+4
pkgs/development/libraries/lzlib/default.nix
··· 12 12 sha256 = "sha256-3ea9WzJTXxeyjJrCS2ZgfgJQUGrBQypBEso8c/XWYsM="; 13 13 }; 14 14 15 + postPatch = lib.optionalString stdenv.isDarwin '' 16 + substituteInPlace Makefile.in --replace '-Wl,--soname=' '-Wl,-install_name,$(out)/lib/' 17 + ''; 18 + 15 19 makeFlags = [ "CC:=$(CC)" ]; 16 20 doCheck = true; 17 21