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

40 lines
1.3 KiB
Nix
Raw Normal View History

2016-10-18 15:28:38 +00:00
{stdenv, fetchurl, tk, tcllib, makeWrapper
, tkremind ? true
} :
2016-10-18 15:28:38 +00:00
assert tkremind -> tk != null;
assert tkremind -> tcllib != null;
assert tkremind -> makeWrapper != null;
let
inherit (stdenv.lib) optional optionals optionalString;
tclLibraries = stdenv.lib.optionals tkremind [ tcllib tk ];
2016-10-18 15:28:38 +00:00
tclLibPaths = stdenv.lib.concatStringsSep " "
(map (p: "${p}/lib/${p.libPrefix}") tclLibraries);
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 15:28:38 +00:00
nativeBuildInputs = optional tkremind makeWrapper;
2016-10-18 15:28:38 +00:00
propagatedBuildInputs = tclLibraries;
postPatch = optionalString tkremind ''
2016-10-18 15:28:38 +00:00
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
'';
2016-10-18 15:28:38 +00:00
postInstall = optionalString tkremind ''
2016-10-18 15:28:38 +00:00
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
'';
2016-10-18 15:28:38 +00:00
meta = {
homepage = https://dianne.skoll.ca/projects/remind/;
description = "Sophisticated calendar and alarm program for the console";
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [raskin kovirobi];
platforms = with stdenv.lib.platforms; linux;
};
}