feat: add themes derivation

This commit is contained in:
Jan-Bulthuis 2026-07-19 18:34:37 +02:00
parent 30ca17e17f
commit 2b0c852e99

View File

@ -46,6 +46,14 @@
cp -r ./* $out/ cp -r ./* $out/
''; '';
}; };
packages.themes = pkgs.stdenv.mkDerivation {
name = "themes";
phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out
cp ${helix}/runtime/themes/*.toml $out/
'';
};
packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: { packages.karnaugh = pkgs.rustPlatform.buildRustPackage (final: {
pname = "karnaugh"; pname = "karnaugh";
version = "0.1.5"; version = "0.1.5";