1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/remind/default.nix
Kovacsics Robert (NixOS-SSD2) 8e7f4d3c33 Remind update to 3.1.14, changes:
* Version 3.1 Patch 14 - 2014-04-24

- NEW FEATURE: Putting the line __EOF__ in a .rem file causes Remind to
  treat it as end-of-file.

- IMPROVEMENT: Use better PNG images for moons in the HTML display

- CHANGE: Author name updated from "David" to "Dianne"

- BUG FIX: The "-n" command-line option should really run in
  "ADVANCE_MODE" rather than "CAL_MODE" internally; otherwise, the
  substitution sequences may be misinterpreted.

- BUG FIX: A typo in clearing out MD5 sum context has been fixed.

- BUG FIX: Typo in Spanish translation was fixed.
2015-06-08 10:36:18 +01:00

18 lines
563 B
Nix

{stdenv, fetchurl} :
stdenv.mkDerivation {
name = "remind-3.1.14";
src = fetchurl {
url = http://www.roaringpenguin.com/files/download/remind-03.01.14.tar.gz;
sha256 = "1b9ij3r95lf14q6dyh8ilzc3y5yxxc1iss8wj3i49n6zjvklml8a";
};
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;
};
}