2016-10-18 16:28:38 +01:00
|
|
|
{stdenv, fetchurl, tk, tcllib, makeWrapper
|
|
|
|
, tkremind ? true
|
|
|
|
} :
|
2009-02-25 22:44:08 +00:00
|
|
|
|
2016-10-18 16:28:38 +01:00
|
|
|
assert tkremind -> tk != null;
|
|
|
|
assert tkremind -> tcllib != null;
|
|
|
|
assert tkremind -> makeWrapper != null;
|
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
let
|
2019-06-16 20:59:06 +01:00
|
|
|
inherit (stdenv.lib) optional optionalString;
|
2018-11-29 05:30:11 +00:00
|
|
|
tclLibraries = stdenv.lib.optionals tkremind [ tcllib tk ];
|
2016-10-18 16:28:38 +01:00
|
|
|
tclLibPaths = stdenv.lib.concatStringsSep " "
|
|
|
|
(map (p: "${p}/lib/${p.libPrefix}") tclLibraries);
|
2018-11-29 05:30:11 +00:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "remind-3.1.16";
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://dianne.skoll.ca/projects/remind/download/remind-03.01.16.tar.gz;
|
|
|
|
sha256 = "14yavwqmimba8rdpwx3wlav9sfb0v5rcd1iyzqrs08wx07a9pdzf";
|
|
|
|
};
|
2016-10-18 16:28:38 +01:00
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
nativeBuildInputs = optional tkremind makeWrapper;
|
2016-10-18 16:28:38 +01:00
|
|
|
propagatedBuildInputs = tclLibraries;
|
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
postPatch = optionalString tkremind ''
|
2016-10-18 16:28:38 +01:00
|
|
|
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
|
2018-11-29 05:30:11 +00:00
|
|
|
'';
|
2016-10-18 16:28:38 +01:00
|
|
|
|
2018-11-29 05:30:11 +00:00
|
|
|
postInstall = optionalString tkremind ''
|
2016-10-18 16:28:38 +01:00
|
|
|
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
|
2018-11-29 05:30:11 +00:00
|
|
|
'';
|
2016-10-18 16:28:38 +01:00
|
|
|
|
2009-02-25 22:44:08 +00:00
|
|
|
meta = {
|
2018-11-29 05:30:11 +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";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin kovirobi];
|
2010-04-21 08:00:49 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-02-25 22:44:08 +00:00
|
|
|
};
|
|
|
|
}
|