todoman: limit to linux

glibcLocales doesn't exist on Darwin
This commit is contained in:
Uli Baum 2018-08-25 00:13:47 +02:00
parent 4768d2e13a
commit 2abe3956e4

View File

@ -34,7 +34,7 @@ buildPythonApplication rec {
rm tests/test_main.py rm tests/test_main.py
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://github.com/pimutils/todoman; homepage = https://github.com/pimutils/todoman;
description = "Standards-based task manager based on iCalendar"; description = "Standards-based task manager based on iCalendar";
longDescription = '' longDescription = ''
@ -50,7 +50,8 @@ buildPythonApplication rec {
Todoman is part of the pimutils project Todoman is part of the pimutils project
''; '';
license = stdenv.lib.licenses.isc; license = licenses.isc;
maintainers = with stdenv.lib.maintainers; [ leenaars ]; maintainers = with maintainers; [ leenaars ];
platforms = platforms.linux;
}; };
} }