ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
26 lines
652 B
Nix
26 lines
652 B
Nix
{ stdenv, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.2.9";
|
|
name = "yaft-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uobikiemukot";
|
|
repo = "yaft";
|
|
rev = "v${version}";
|
|
sha256 = "0l1ig8wm545kpn4l7186rymny83jkahnjim290wsl7hsszfq1ckd";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" "MANPREFIX=$(out)/share/man" ];
|
|
|
|
meta = {
|
|
homepage = https://github.com/uobikiemukot/yaft;
|
|
description = "Yet another framebuffer terminal";
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|