mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
23 lines
378 B
Nix
23 lines
378 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
}: let
|
|
nvim = ./nvim;
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "nvchad";
|
|
version = "2.5.0";
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
cp -r ${nvim}/* "$out/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "NvChad";
|
|
homepage = "https://github.com/NvChad/NvChad";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|