neo: init at 0.6

This commit is contained in:
Gabriel Arazas 2021-12-18 11:14:41 +08:00
parent e0a40b8927
commit 8d7c106efe
2 changed files with 23 additions and 0 deletions

View File

@ -8,6 +8,7 @@
pop-launcher = pkgs.callPackage ./pop-launcher.nix { };
gnome-shell-extension-fly-pie =
callPackage ./gnome-shell-extension-fly-pie.nix { };
neo = callPackage ./neo.nix { };
pop-launcher-plugin-duckduckgo-bangs =
pkgs.callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
tic-80 = pkgs.callPackage ./tic-80.nix { };

22
pkgs/neo.nix Normal file
View File

@ -0,0 +1,22 @@
{ 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;
};
}