2021-01-15 09:19:50 +00:00
|
|
|
{lib, stdenv, fetchurl, tk, tcllib, makeWrapper
|
2016-10-18 15:28:38 +00:00
|
|
|
, tkremind ? true
|
|
|
|
} :
|
2009-02-25 22:44:08 +00:00
|
|
|
|
2016-10-18 15:28:38 +00:00
|
|
|
assert tkremind -> tk != null;
|
|
|
|
assert tkremind -> tcllib != null;
|
|
|
|
assert tkremind -> makeWrapper != null;
|
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
let
|
2021-01-15 09:19:50 +00:00
|
|
|
inherit (lib) optional optionalString;
|
|
|
|
tclLibraries = lib.optionals tkremind [ tcllib tk ];
|
|
|
|
tclLibPaths = lib.concatStringsSep " "
|
2016-10-18 15:28:38 +00:00
|
|
|
(map (p: "${p}/lib/${p.libPrefix}") tclLibraries);
|
2019-09-09 23:52:34 +00:00
|
|
|
tkremindPatch = optionalString tkremind ''
|
|
|
|
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
|
|
|
|
'';
|
2020-07-21 13:38:18 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
pname = "remind";
|
2021-03-09 14:13:02 +00:00
|
|
|
version = "03.03.05";
|
2020-07-21 13:38:18 +00:00
|
|
|
|
2018-11-29 05:30:11 +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-03-09 14:13:02 +00:00
|
|
|
sha256 = "sha256-Ye0X2Gvek/pyaNVxGKL773OWJvC4I6F5nEsRQgzWbsE=";
|
2018-11-29 05:30:11 +00:00
|
|
|
};
|
2016-10-18 15:28:38 +00:00
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
nativeBuildInputs = optional tkremind makeWrapper;
|
2016-10-18 15:28:38 +00:00
|
|
|
propagatedBuildInputs = tclLibraries;
|
|
|
|
|
2019-09-09 23:52:34 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace "sleep 1" "true"
|
|
|
|
substituteInPlace ./src/init.c \
|
|
|
|
--replace "rkrphgvba(0);" "" \
|
|
|
|
--replace "rkrphgvba(1);" ""
|
|
|
|
${tkremindPatch}
|
2018-11-29 05:30:11 +00:00
|
|
|
'';
|
2016-10-18 15:28:38 +00:00
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
postInstall = optionalString tkremind ''
|
2016-10-18 15:28:38 +00:00
|
|
|
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
|
2018-11-29 05:30:11 +00:00
|
|
|
'';
|
2016-10-18 15:28:38 +00:00
|
|
|
|
2009-02-25 22:44:08 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://dianne.skoll.ca/projects/remind/";
|
2009-02-25 22:44:08 +00:00
|
|
|
description = "Sophisticated calendar and alarm program for the console";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = with lib.maintainers; [raskin kovirobi];
|
|
|
|
platforms = with lib.platforms; unix;
|
2009-02-25 22:44:08 +00:00
|
|
|
};
|
|
|
|
}
|