mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
8e7f4d3c33
* 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.
18 lines
563 B
Nix
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;
|
|
};
|
|
}
|