mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-27 02:44:58 +08:00
12 lines
306 B
Nix
12 lines
306 B
Nix
{ stdenvNoCC, ... }:
|
|
stdenvNoCC.mkDerivation {
|
|
name = "custom-colorschemes";
|
|
src = ./colorSchemes;
|
|
installPhase = ''
|
|
mkdir -p $out/share/themes
|
|
cp *.yaml $out/share/themes
|
|
'';
|
|
meta = {
|
|
description = "Custom base16 color schemes that are not included in the base16 repository";
|
|
};
|
|
}
|