2009-02-25 22:44:08 +00:00
|
|
|
{stdenv, fetchurl} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-06-08 09:36:18 +00:00
|
|
|
name = "remind-3.1.14";
|
2009-02-25 22:44:08 +00:00
|
|
|
src = fetchurl {
|
2015-06-08 09:36:18 +00:00
|
|
|
url = http://www.roaringpenguin.com/files/download/remind-03.01.14.tar.gz;
|
|
|
|
sha256 = "1b9ij3r95lf14q6dyh8ilzc3y5yxxc1iss8wj3i49n6zjvklml8a";
|
2009-02-25 22:44:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.roaringpenguin.com/products/remind;
|
|
|
|
description = "Sophisticated calendar and alarm program for the console";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-12-19 16:44:00 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric raskin kovirobi];
|
2010-04-21 07:00:49 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-02-25 22:44:08 +00:00
|
|
|
};
|
|
|
|
}
|