···11+{stdenv, fetchurl, ncurses, gettext}:
22+33+stdenv.mkDerivation {
44+ name = "calcurse-4.0.0";
55+66+ src = fetchurl {
77+ url = http://calcurse.org/files/calcurse-4.0.0.tar.gz;
88+ sha256 = "0d33cpkbhyidvm3xx6iw9ljqdvl6477c2kcwix3bs63nj0ch06v2";
99+ };
1010+1111+ buildInputs = [ncurses gettext];
1212+1313+ meta = {
1414+ description = "A calendar and scheduling application for the command line";
1515+ version = "4.0.0";
1616+ longDescription = ''
1717+ calcurse is a calendar and scheduling application for the command line. It helps
1818+ keep track of events, appointments and everyday tasks. A configurable notification
1919+ system reminds users of upcoming deadlines, the curses based interface can be
2020+ customized to suit user needs and a very powerful set of command line options can
2121+ be used to filter and format appointments, making it suitable for use in scripts.
2222+ '';
2323+ homepage = http://calcurse.org/;
2424+ license = stdenv.lib.licenses.bsd2;
2525+ platforms = stdenv.lib.platforms.linux;
2626+ };
2727+}