From 8d7c106efe7ab0da7cb7263a1657c3158c8c7369 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 18 Dec 2021 11:14:41 +0800 Subject: [PATCH] neo: init at 0.6 --- pkgs/default.nix | 1 + pkgs/neo.nix | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/neo.nix diff --git a/pkgs/default.nix b/pkgs/default.nix index 1dc2b23a..e4714bc5 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -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 { }; diff --git a/pkgs/neo.nix b/pkgs/neo.nix new file mode 100644 index 00000000..3bb4918f --- /dev/null +++ b/pkgs/neo.nix @@ -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; + }; +}