lol

calcurse: init at 4.0.0

+29
+27
pkgs/applications/misc/calcurse/default.nix
··· 1 + {stdenv, fetchurl, ncurses, gettext}: 2 + 3 + stdenv.mkDerivation { 4 + name = "calcurse-4.0.0"; 5 + 6 + src = fetchurl { 7 + url = http://calcurse.org/files/calcurse-4.0.0.tar.gz; 8 + sha256 = "0d33cpkbhyidvm3xx6iw9ljqdvl6477c2kcwix3bs63nj0ch06v2"; 9 + }; 10 + 11 + buildInputs = [ncurses gettext]; 12 + 13 + meta = { 14 + description = "A calendar and scheduling application for the command line"; 15 + version = "4.0.0"; 16 + longDescription = '' 17 + calcurse is a calendar and scheduling application for the command line. It helps 18 + keep track of events, appointments and everyday tasks. A configurable notification 19 + system reminds users of upcoming deadlines, the curses based interface can be 20 + customized to suit user needs and a very powerful set of command line options can 21 + be used to filter and format appointments, making it suitable for use in scripts. 22 + ''; 23 + homepage = http://calcurse.org/; 24 + license = stdenv.lib.licenses.bsd2; 25 + platforms = stdenv.lib.platforms.linux; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 10797 10797 inherit (gnome) libglade; 10798 10798 }; 10799 10799 10800 + calcurse = callPackage ../applications/misc/calcurse { }; 10801 + 10800 10802 calibre = callPackage ../applications/misc/calibre { 10801 10803 inherit (pythonPackages) pyqt5 sip_4_16; 10802 10804 };