2016-10-18 08:28:38 -07:00
|
|
|
{stdenv, fetchurl, tk, tcllib, makeWrapper
|
|
|
|
, tkremind ? true
|
|
|
|
} :
|
2009-02-25 14:44:08 -08:00
|
|
|
|
2016-10-18 08:28:38 -07:00
|
|
|
assert tkremind -> tk != null;
|
|
|
|
assert tkremind -> tcllib != null;
|
|
|
|
assert tkremind -> makeWrapper != null;
|
|
|
|
|
2018-11-28 21:30:11 -08:00
|
|
|
let
|
2019-06-16 12:59:06 -07:00
|
|
|
inherit (stdenv.lib) optional optionalString;
|
2018-11-28 21:30:11 -08:00
|
|
|
tclLibraries = stdenv.lib.optionals tkremind [ tcllib tk ];
|
2016-10-18 08:28:38 -07:00
|
|
|
tclLibPaths = stdenv.lib.concatStringsSep " "
|
|
|
|
(map (p: "${p}/lib/${p.libPrefix}") tclLibraries);
|
2019-09-09 16:52:34 -07:00
|
|
|
tkremindPatch = optionalString tkremind ''
|
|
|
|
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
|
|
|
|
'';
|
2018-11-28 21:30:11 -08:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "remind-3.1.16";
|
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "https://dianne.skoll.ca/projects/remind/download/remind-03.01.16.tar.gz";
|
2018-11-28 21:30:11 -08:00
|
|
|
sha256 = "14yavwqmimba8rdpwx3wlav9sfb0v5rcd1iyzqrs08wx07a9pdzf";
|
|
|
|
};
|
2016-10-18 08:28:38 -07:00
|
|
|
|
2018-11-28 21:30:11 -08:00
|
|
|
nativeBuildInputs = optional tkremind makeWrapper;
|
2016-10-18 08:28:38 -07:00
|
|
|
propagatedBuildInputs = tclLibraries;
|
|
|
|
|
2019-09-09 16:52:34 -07:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace "sleep 1" "true"
|
|
|
|
substituteInPlace ./src/init.c \
|
|
|
|
--replace "rkrphgvba(0);" "" \
|
|
|
|
--replace "rkrphgvba(1);" ""
|
|
|
|
${tkremindPatch}
|
2018-11-28 21:30:11 -08:00
|
|
|
'';
|
2016-10-18 08:28:38 -07:00
|
|
|
|
2018-11-28 21:30:11 -08:00
|
|
|
postInstall = optionalString tkremind ''
|
2016-10-18 08:28:38 -07:00
|
|
|
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
|
2018-11-28 21:30:11 -08:00
|
|
|
'';
|
2016-10-18 08:28:38 -07:00
|
|
|
|
2009-02-25 14:44:08 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://dianne.skoll.ca/projects/remind/";
|
2009-02-25 14:44:08 -08:00
|
|
|
description = "Sophisticated calendar and alarm program for the console";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2018-07-22 12:50:19 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin kovirobi];
|
2019-09-09 16:52:34 -07:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2009-02-25 14:44:08 -08:00
|
|
|
};
|
|
|
|
}
|