2009-02-25 22:44:08 +00:00
|
|
|
{stdenv, fetchurl} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-04-21 08:00:49 +01:00
|
|
|
name = "remind-3.1.8";
|
2009-02-25 22:44:08 +00:00
|
|
|
src = fetchurl {
|
2014-10-04 13:40:09 +01:00
|
|
|
url = http://www.roaringpenguin.com/files/download/remind-03.01.13.tar.gz;
|
|
|
|
sha256 = "0kzw1d53nlj90qfsibbs2gkzp1hamqqxpj57ip4kz1j1xgan69ng";
|
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 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2014-10-04 13:40:09 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric raskin];
|
2010-04-21 08:00:49 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-02-25 22:44:08 +00:00
|
|
|
};
|
|
|
|
}
|