mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
committed by
github-actions[bot]
parent
ff76e6a1d3
commit
f65317021b
41
pkgs/tools/misc/lavat/default.nix
Normal file
41
pkgs/tools/misc/lavat/default.nix
Normal file
@@ -0,0 +1,41 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
,
|
||||
}:
|
||||
let
|
||||
version = "2.0.0";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "lavat";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AngelJumbo";
|
||||
repo = "lavat";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-xDjqKhwoaqCqo7tkpcEe2MBEpVTJUOpKtu7Fi9aPOPo=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/bin
|
||||
cp lavat $out/bin
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lava lamp simulation in the terminal";
|
||||
longDescription = ''
|
||||
Lavat puts ascii metaballs in your terminal to make it look a bit like a
|
||||
lava lamp.
|
||||
|
||||
Lavat contains various options, including those to change the color and
|
||||
speed of the metaballs. For a full list, run `lavat -h`
|
||||
'';
|
||||
maintainers = [ maintainers.minion3665 ];
|
||||
license = licenses.mit;
|
||||
homepage = "https://github.com/AngelJumbo/lavat";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -9607,6 +9607,8 @@ with pkgs;
|
||||
|
||||
lazycli = callPackage ../tools/misc/lazycli { };
|
||||
|
||||
lavat = callPackage ../tools/misc/lavat { };
|
||||
|
||||
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
|
||||
|
||||
ldapdomaindump = with python3Packages; toPythonApplication ldapdomaindump;
|
||||
|
||||
Reference in New Issue
Block a user