nixpkgs/pkgs/tools/misc/remind/default.nix
Kovacsics Robert (rmk35) caa521c8d2 Updated remind package name (otherwise unchanged).
Also added myself to the maintainers list.
2014-12-19 16:44:00 +00:00

18 lines
563 B
Nix

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