mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
remind: fix tkremind
This commit is contained in:
parent
09e4b78b48
commit
b5417b3e77
@ -1,12 +1,33 @@
|
||||
{stdenv, fetchurl} :
|
||||
{stdenv, fetchurl, tk, tcllib, makeWrapper
|
||||
, tkremind ? true
|
||||
} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
assert tkremind -> tk != null;
|
||||
assert tkremind -> tcllib != null;
|
||||
assert tkremind -> makeWrapper != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "remind-3.1.15";
|
||||
src = fetchurl {
|
||||
url = http://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";
|
||||
|
Loading…
Reference in New Issue
Block a user