nixos-config/pkgs/neo.nix

23 lines
545 B
Nix
Raw Normal View History

2021-12-18 03:14:41 +00:00
{ stdenv, lib, fetchFromGitHub, ncurses, autoreconfHook, libtool
, autoconf-archive }:
stdenv.mkDerivation rec {
pname = "neo";
version = "0.6";
src = fetchFromGitHub {
owner = "st3w";
repo = pname;
rev = "v${version}";
sha256 = "sha256-0ELYLV7sB/HhmTf9cN+6ejyhZq/pjdHgwi9V53eT61M=";
};
buildInputs = [ autoreconfHook autoconf-archive ncurses ];
meta = with lib; {
description = "Simulates the digital rain from 'The Matrix'";
homepage = "https://github.com/st3w/neo";
license = licenses.gpl3;
};
}