Merge pull request #44922 from Enzime/fix/darktable-on-macos

darktable: Fix compilation on macOS
This commit is contained in:
Jörg Thalheim
2018-08-15 20:24:20 +02:00
committed by GitHub
3 changed files with 20 additions and 12 deletions
@@ -15,8 +15,8 @@ stdenv.mkDerivation rec {
configureFlags = "-v";
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ ];
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ enzime ];
license = stdenv.lib.licenses.lgpl3;
description = "An opensource database of photographic lenses and their characteristics";
homepage = http://lensfun.sourceforge.net/;
@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
homepage = https://nzjrs.github.io/osm-gps-map;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ hrdinka ];
platforms = platforms.linux;
platforms = platforms.linux ++ platforms.darwin;
};
}