summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-04-08 18:27:52 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-04-08 18:27:52 +0100
commita2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c (patch)
treebaf6c92a060b5a68bfe5a09b238313ae3328dfad /pkgs/applications
parent0fe94a1258d25a83a690b7c6c6b62bcc61bce213 (diff)
downloadnixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.tar
nixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.tar.gz
nixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.tar.bz2
nixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.tar.lz
nixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.tar.xz
nixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.tar.zst
nixlib-a2efd3e81cdf66cfdb61bd33585f4138ab4d8a5c.zip
openorienteering-mapper: also enable linux
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/gis/openorienteering-mapper/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/gis/openorienteering-mapper/default.nix b/pkgs/applications/gis/openorienteering-mapper/default.nix
index c85f39a4fb4e..7b79cd062a8c 100644
--- a/pkgs/applications/gis/openorienteering-mapper/default.nix
+++ b/pkgs/applications/gis/openorienteering-mapper/default.nix
@@ -55,14 +55,14 @@ stdenv.mkDerivation rec {
     ln -s $out/Mapper.app/Contents/MacOS/Mapper $out/bin/mapper
     '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = ''
       OpenOrienteering Mapper is an orienteering mapmaking program
       and provides a free alternative to the existing proprietary solution.
     '';
     homepage = https://www.openorienteering.org/apps/mapper/;
-    license = stdenv.lib.licenses.gpl3;
-    platforms = with stdenv.lib.platforms; darwin;
-    maintainers = with stdenv.lib.maintainers; [mpickering];
+    license = licenses.gpl3;
+    platforms = with platforms; linux ++ darwin;
+    maintainers = with maintainers; [mpickering];
   };
 }