1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/misc/remind/default.nix
2014-10-04 16:40:09 +04:00

18 lines
553 B
Nix

{stdenv, fetchurl} :
stdenv.mkDerivation {
name = "remind-3.1.8";
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];
platforms = with stdenv.lib.platforms; linux;
};
}