12 stdenv.mkDerivation rec {
17 url = "https://calcurse.org/files/${pname}-${version}.tar.gz";
18 hash = "sha256-2GuzcBT9abjYPMuQSsl5xrjd9Z7j28gPWidFJeTVgwo=";
25 python3Packages.wrapPython
27 nativeBuildInputs = [ makeWrapper ];
31 buildPythonPath "${python3Packages.httplib2} ${python3Packages.oauth2client}"
32 patchPythonScript $out/bin/calcurse-caldav
36 description = "Calendar and scheduling application for the command line";
38 calcurse is a calendar and scheduling application for the command line. It helps
39 keep track of events, appointments and everyday tasks. A configurable notification
40 system reminds users of upcoming deadlines, the curses based interface can be
41 customized to suit user needs and a very powerful set of command line options can
42 be used to filter and format appointments, making it suitable for use in scripts.
44 homepage = "https://calcurse.org/";
45 changelog = "https://git.calcurse.org/calcurse.git/plain/CHANGES.md?h=v${version}";
46 license = licenses.bsd2;
47 platforms = platforms.unix;
48 maintainers = [ maintainers.matthiasbeyer ];