mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
man-db: dont use libpipeline on darwin, causes build failure
This commit is contained in:
parent
91ba92096c
commit
ef66f1536d
@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "03ly0hbpgjnag576rgccanaisn7f6422q5qxrj64vyzslc2651y4";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libpipeline db groff ];
|
||||
buildInputs = [ pkgconfig ]
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) libpipeline
|
||||
++ [ db groff ];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-setuid"
|
||||
|
Loading…
Reference in New Issue
Block a user