nixpkgs/pkgs/tools/misc/remind/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, tk
, tcllib
, tcl
2016-10-18 16:28:38 +01:00
, tkremind ? true
}:
let
inherit (lib) optional optionals optionalString;
tclLibraries = optionals tkremind [ tcllib tk ];
tkremindPatch = optionalString tkremind ''
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
'';
in
tcl.mkTclDerivation rec {
2020-07-21 14:38:18 +01:00
pname = "remind";
2022-01-01 05:37:22 +00:00
version = "03.03.11";
2020-07-21 14:38:18 +01:00
src = fetchurl {
2020-07-21 14:38:18 +01:00
url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
2022-01-01 05:37:22 +00:00
sha256 = "sha256-CCZ7CENeI8zNUgtBYesGWbqf53OCr9hBTN1ibegB4lo=";
};
2016-10-18 16:28:38 +01:00
propagatedBuildInputs = tclLibraries;
postPatch = ''
substituteInPlace ./configure \
--replace "sleep 1" "true"
substituteInPlace ./src/init.c \
--replace "rkrphgvba(0);" "" \
--replace "rkrphgvba(1);" ""
${tkremindPatch}
'';
2016-10-18 16:28:38 +01:00
meta = with lib; {
homepage = "https://dianne.skoll.ca/projects/remind/";
description = "Sophisticated calendar and alarm program for the console";
license = licenses.gpl2Only;
maintainers = with maintainers; [ raskin kovirobi ];
platforms = platforms.unix;
};
}