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