about summary refs log tree commit diff
path: root/pkgs/development/libraries/lensfun
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2018-08-01 19:04:22 +1000
committerMichael Hoang <enzime@users.noreply.github.com>2018-08-14 13:59:29 +1000
commitad565e992562d43cb9e6f843459a2ac1c35790f5 (patch)
treecdf8f41d01960694e61430fccfeff8a3f1cf0d2d /pkgs/development/libraries/lensfun
parenta1b79f63bd80473ae9ad43ed372d282d734fc3b1 (diff)
lensfun: Add macOS as a supported platform
Diffstat (limited to 'pkgs/development/libraries/lensfun')
-rw-r--r--pkgs/development/libraries/lensfun/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/lensfun/default.nix b/pkgs/development/libraries/lensfun/default.nix
index e9ba4ae5ac212..1c9c66f893632 100644
--- a/pkgs/development/libraries/lensfun/default.nix
+++ b/pkgs/development/libraries/lensfun/default.nix
@@ -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/;