about summary refs log tree commit diff
path: root/pkgs/tools/misc/remind/default.nix
blob: 18137312a3d1d6a855b3775ece831af35a5ae002 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl} :

stdenv.mkDerivation {
  name = "remind-3.1.13";
  src = fetchurl {
    url = http://www.roaringpenguin.com/files/download/remind-03.01.13.tar.gz;
    sha256 = "0kzw1d53nlj90qfsibbs2gkzp1hamqqxpj57ip4kz1j1xgan69ng";
  };

  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;
  };
}