···2525 homepage = https://derf.homelinux.org/projects/feh/;
2626 license = stdenv.lib.licenses.mit;
2727 maintainers = with stdenv.lib.maintainers; [viric];
2828- platforms = with stdenv.lib.platforms; linux;
2828+ platforms = with stdenv.lib.platforms; unix;
2929 };
3030}
+17-1
pkgs/development/libraries/imlib2/default.nix
···2121 --replace "@my_libs@" ""
2222 '';
23232424+ # Do not build amd64 assembly code on Darwin, because it fails to compile
2525+ # with unknow directive errors
2626+ configureFlags = if stdenv.isDarwin then [ "--enable-amd64=no" ] else null;
2727+2428 meta = {
2525- hydraPlatforms = stdenv.lib.platforms.linux;
2929+ description = "Image manipulation library";
3030+3131+ longDescription = ''
3232+ This is the Imlib 2 library - a library that does image file loading and
3333+ saving as well as rendering, manipulation, arbitrary polygon support, etc.
3434+ It does ALL of these operations FAST. Imlib2 also tries to be highly
3535+ intelligent about doing them, so writing naive programs can be done
3636+ easily, without sacrificing speed.
3737+ '';
3838+3939+ license = stdenv.lib.licenses.free;
4040+ platforms = stdenv.lib.platforms.unix;
4141+ maintainers = with stdenv.lib.maintainers; [ spwhitt ];
2642 };
2743}