From 2abe3956e46b4cbac2096766e49cca384049947a Mon Sep 17 00:00:00 2001 From: Uli Baum Date: Sat, 25 Aug 2018 00:13:47 +0200 Subject: [PATCH] todoman: limit to linux glibcLocales doesn't exist on Darwin --- pkgs/applications/office/todoman/default.nix | 7 ++++--- 1 file 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; }; }