My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/networking/instant-messengers/ytalk/default.nix

21 lines
550 B

{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
pname = "ytalk";
version = "3.3.0";
src = fetchurl {
url = "ftp://ftp.ourproject.org/pub/ytalk/${pname}-${version}.tar.gz";
sha256 = "1d3jhnj8rgzxyxjwfa22vh45qwzjvxw1qh8fz6b7nfkj3zvk9jvf";
};
buildInputs = [ ncurses ];
meta = {
homepage = "http://ytalk.ourproject.org";
description = "A terminal based talk client";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ taeer ];
license = lib.licenses.gpl2Plus;
};
}