mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 06:19:00 +00:00
neo: init at 0.6
This commit is contained in:
parent
e0a40b8927
commit
8d7c106efe
@ -8,6 +8,7 @@
|
|||||||
pop-launcher = pkgs.callPackage ./pop-launcher.nix { };
|
pop-launcher = pkgs.callPackage ./pop-launcher.nix { };
|
||||||
gnome-shell-extension-fly-pie =
|
gnome-shell-extension-fly-pie =
|
||||||
callPackage ./gnome-shell-extension-fly-pie.nix { };
|
callPackage ./gnome-shell-extension-fly-pie.nix { };
|
||||||
|
neo = callPackage ./neo.nix { };
|
||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
pkgs.callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
pkgs.callPackage ./pop-launcher-plugin-duckduckgo-bangs.nix { };
|
||||||
tic-80 = pkgs.callPackage ./tic-80.nix { };
|
tic-80 = pkgs.callPackage ./tic-80.nix { };
|
||||||
|
22
pkgs/neo.nix
Normal file
22
pkgs/neo.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user