nixpkgs/pkgs/tools/misc/remind/default.nix

18 lines
563 B
Nix
Raw Normal View History

{stdenv, fetchurl} :
stdenv.mkDerivation {
2015-09-02 08:56:35 +00:00
name = "remind-3.1.15";
src = fetchurl {
2015-09-02 08:56:35 +00:00
url = http://www.roaringpenguin.com/files/download/remind-03.01.15.tar.gz;
sha256 = "1hcfcxz5fjzl7606prlb7dgls5kr8z3wb51h48s6qm8ang0b9nla";
};
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;
};
}