mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-06 13:26:34 +05:30
feat: isolate nvim config
This commit is contained in:
22
default.nix
Normal file
22
default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
}: let
|
||||
nvim = ./src;
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "tnvim";
|
||||
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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user