nixpkgs/pkgs/applications/misc/calcurse/default.nix

35 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, gettext, python3, python3Packages, makeWrapper }:
2015-07-16 06:29:43 +00:00
2017-03-19 23:32:47 +00:00
stdenv.mkDerivation rec {
pname = "calcurse";
2020-10-22 09:18:32 +00:00
version = "4.7.0";
2015-07-16 06:29:43 +00:00
src = fetchurl {
url = "https://calcurse.org/files/${pname}-${version}.tar.gz";
2020-10-22 09:18:32 +00:00
sha256 = "0dc4bka2l9z03bnlygsnl06l1zi2wbn29rkc02b13x2kdab7arpg";
2015-07-16 06:29:43 +00:00
};
buildInputs = [ ncurses gettext python3 python3Packages.wrapPython ];
2017-03-19 23:32:47 +00:00
nativeBuildInputs = [ makeWrapper ];
2015-07-16 06:29:43 +00:00
2017-03-19 23:32:47 +00:00
postInstall = ''
patchShebangs .
buildPythonPath ${python3Packages.httplib2}
patchPythonScript $out/bin/calcurse-caldav
'';
2017-03-19 23:32:47 +00:00
meta = with lib; {
2015-07-16 06:29:43 +00:00
description = "A calendar and scheduling application for the command line";
longDescription = ''
calcurse is a calendar and scheduling application for the command line. It helps
keep track of events, appointments and everyday tasks. A configurable notification
system reminds users of upcoming deadlines, the curses based interface can be
customized to suit user needs and a very powerful set of command line options can
be used to filter and format appointments, making it suitable for use in scripts.
'';
homepage = "https://calcurse.org/";
2017-03-19 23:32:47 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
2015-07-16 06:29:43 +00:00
};
}