mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
35 lines
1.3 KiB
Nix
35 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, ncurses, gettext, python3, python3Packages, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "calcurse";
|
|
version = "4.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://calcurse.org/files/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-CnxV0HZ0Vp0WbAsOdYeyly09qBYM231gsdvSiVgDr7A=";
|
|
};
|
|
|
|
buildInputs = [ ncurses gettext python3 python3Packages.wrapPython ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postInstall = ''
|
|
patchShebangs .
|
|
buildPythonPath "${python3Packages.httplib2} ${python3Packages.oauth2client}"
|
|
patchPythonScript $out/bin/calcurse-caldav
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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/";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|