nixpkgs/pkgs/tools/misc/remind/default.nix
Lluís Batlle i Rossell 85c1a2b7ff "Remind" update.
svn path=/nixpkgs/trunk/; revision=21193
2010-04-21 07:00:49 +00:00

18 lines
529 B
Nix

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