1{stdenv, fetchurl} :
2
3stdenv.mkDerivation {
4 name = "remind-3.1.14";
5 src = fetchurl {
6 url = http://www.roaringpenguin.com/files/download/remind-03.01.14.tar.gz;
7 sha256 = "1b9ij3r95lf14q6dyh8ilzc3y5yxxc1iss8wj3i49n6zjvklml8a";
8 };
9
10 meta = {
11 homepage = http://www.roaringpenguin.com/products/remind;
12 description = "Sophisticated calendar and alarm program for the console";
13 license = stdenv.lib.licenses.gpl2;
14 maintainers = with stdenv.lib.maintainers; [viric raskin kovirobi];
15 platforms = with stdenv.lib.platforms; linux;
16 };
17}