summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorUli Baum <xeji@cat3.de>2018-08-25 00:13:47 +0200
committerUli Baum <xeji@cat3.de>2018-08-25 00:13:47 +0200
commit2abe3956e46b4cbac2096766e49cca384049947a (patch)
treed43579ef2e3f645f6ad189cdbad54e16c4a6f4e0 /pkgs
parent4768d2e13a4572826e169c331b2a96ae92d02dae (diff)
downloadnixlib-2abe3956e46b4cbac2096766e49cca384049947a.tar
nixlib-2abe3956e46b4cbac2096766e49cca384049947a.tar.gz
nixlib-2abe3956e46b4cbac2096766e49cca384049947a.tar.bz2
nixlib-2abe3956e46b4cbac2096766e49cca384049947a.tar.lz
nixlib-2abe3956e46b4cbac2096766e49cca384049947a.tar.xz
nixlib-2abe3956e46b4cbac2096766e49cca384049947a.tar.zst
nixlib-2abe3956e46b4cbac2096766e49cca384049947a.zip
todoman: limit to linux
glibcLocales doesn't exist on Darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/office/todoman/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/office/todoman/default.nix b/pkgs/applications/office/todoman/default.nix
index 65fa7e061fee..a7d93c3b0cb9 100644
--- a/pkgs/applications/office/todoman/default.nix
+++ b/pkgs/applications/office/todoman/default.nix
@@ -34,7 +34,7 @@ buildPythonApplication rec {
     rm tests/test_main.py
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/pimutils/todoman;
     description = "Standards-based task manager based on iCalendar";
     longDescription = ''
@@ -50,7 +50,8 @@ buildPythonApplication rec {
 
       Todoman is part of the pimutils project
     '';
-    license = stdenv.lib.licenses.isc;
-    maintainers = with stdenv.lib.maintainers; [ leenaars ];
+    license = licenses.isc;
+    maintainers = with maintainers; [ leenaars ];
+    platforms = platforms.linux;
   };
 }