nixpkgs/pkgs/tools/misc/remind/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, tk
, tcllib
, tcl
2016-10-18 15:28:38 +00:00
, tkremind ? true
}:
let
inherit (lib) optional optionals optionalString;
tclLibraries = optionals tkremind [ tcllib tk ];
tkremindPatch = optionalString tkremind ''
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
'';
in
tcl.mkTclDerivation rec {
2020-07-21 13:38:18 +00:00
pname = "remind";
2021-08-10 20:27:14 +00:00
version = "03.03.07";
2020-07-21 13:38:18 +00:00
src = fetchurl {
2020-07-21 13:38:18 +00:00
url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
2021-08-10 20:27:14 +00:00
sha256 = "sha256-h8lOKdHhiVT/XSIkfX7KMHzmIeEdIsFCCPkD9oo7ij0=";
};
2016-10-18 15:28:38 +00:00
propagatedBuildInputs = tclLibraries;
postPatch = ''
substituteInPlace ./configure \
--replace "sleep 1" "true"
substituteInPlace ./src/init.c \
--replace "rkrphgvba(0);" "" \
--replace "rkrphgvba(1);" ""
${tkremindPatch}
'';
2016-10-18 15:28:38 +00:00
meta = with lib; {
homepage = "https://dianne.skoll.ca/projects/remind/";
description = "Sophisticated calendar and alarm program for the console";
license = licenses.gpl2Only;
maintainers = with maintainers; [ raskin kovirobi ];
platforms = platforms.unix;
};
}