mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
23 lines
545 B
Nix
23 lines
545 B
Nix
{ 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;
|
|
};
|
|
}
|