mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
libgdiplus: fix install on darwin
This commit is contained in:
parent
ce9d30e734
commit
3a526deaee
1 changed files with 4 additions and 0 deletions
|
@ -28,6 +28,10 @@ stdenv.mkDerivation rec {
|
|||
]
|
||||
++ stdenv.lib.optional stdenv.isDarwin Carbon;
|
||||
|
||||
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
ln -s $out/lib/libgdiplus.0.dylib $out/lib/libgdiplus.so
|
||||
'';
|
||||
|
||||
meta = {
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue