22 lines
428 B
Nix
22 lines
428 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.stdenv.mkDerivation {
|
||
|
name = "catppuccin-konsole";
|
||
|
version = "1.0.0";
|
||
|
|
||
|
src = pkgs.fetchFromGitHub {
|
||
|
owner = "catppuccin";
|
||
|
repo = "konsole";
|
||
|
rev = "3b64040e3f4ae5afb2347e7be8a38bc3cd8c73a8";
|
||
|
sha256 = "sha256-d5+ygDrNl2qBxZ5Cn4U7d836+ZHz77m6/yxTIANd9BU";
|
||
|
};
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
|
||
|
install -Dm644 themes/*.colorscheme -t $out/themes
|
||
|
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
}
|