Files
tnvim/pkgs/nvim/default.nix
2024-08-06 01:04:51 +05:30

23 lines
380 B
Nix

{
stdenv,
lib,
}: let
nvim = ./nvim;
in
stdenv.mkDerivation {
pname = "tux-nvim-config";
version = "2.5.0";
buildCommand = ''
mkdir -p $out
cp -r ${nvim}/* "$out/"
'';
meta = with lib; {
description = "tux's nvim config";
homepage = "https://tux.rs";
platforms = platforms.all;
license = licenses.gpl3;
};
}