summary refs log tree commit diff
path: root/pkgs/tools/misc/remind/default.nix
blob: 8dcc9ef81ff6ed243d5be43b5f89ffd8810cd003 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{stdenv, fetchurl, tk, tcllib, makeWrapper
, tkremind ? true
} :

assert tkremind -> tk != null;
assert tkremind -> tcllib != null;
assert tkremind -> makeWrapper != null;

stdenv.mkDerivation rec {
  name = "remind-3.1.15";
  src = fetchurl {
    url = https://www.roaringpenguin.com/files/download/remind-03.01.15.tar.gz;
    sha256 = "1hcfcxz5fjzl7606prlb7dgls5kr8z3wb51h48s6qm8ang0b9nla";
  };

  tclLibraries = if tkremind then [ tcllib tk ] else [];
  tclLibPaths = stdenv.lib.concatStringsSep " "
    (map (p: "${p}/lib/${p.libPrefix}") tclLibraries);

  buildInputs = if tkremind then [ makeWrapper ] else [];
  propagatedBuildInputs = tclLibraries;

  postPatch = if tkremind then ''
    substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
  '' else "";

  postInstall = if tkremind then ''
    wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
  '' else "";

  meta = {
    homepage = http://www.roaringpenguin.com/products/remind;
    description = "Sophisticated calendar and alarm program for the console";
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [viric raskin kovirobi];
    platforms = with stdenv.lib.platforms; linux;
  };
}