summary refs log tree commit diff
path: root/pkgs/tools/misc/remind/default.nix
blob: b679218db79b7b3ec65cefe14714f69eb16b8cd4 (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.8";
  src = fetchurl {
    url = http://www.roaringpenguin.com/files/download/remind-03.01.08.tar.gz;
    sha256 = "0gvizrpkbanm515bhd6mq9xxs4g4ji9pplswaj4plaqsk3yw0qjw";
  };

  meta = {
    homepage = http://www.roaringpenguin.com/products/remind;
    description = "Sophisticated calendar and alarm program for the console";
    license = "GPLv2";
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}