Merge pull request #278313 from pluiedev/feat/catppuccin-qt5ct
This commit is contained in:
commit
099e848071
1 changed files with 31 additions and 0 deletions
31
pkgs/by-name/ca/catppuccin-qt5ct/package.nix
Normal file
31
pkgs/by-name/ca/catppuccin-qt5ct/package.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenvNoCC,
|
||||||
|
fetchFromGitHub,
|
||||||
|
}:
|
||||||
|
stdenvNoCC.mkDerivation {
|
||||||
|
pname = "catppuccin-qt5ct";
|
||||||
|
version = "2023-03-21";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "catppuccin";
|
||||||
|
repo = "qt5ct";
|
||||||
|
rev = "89ee948e72386b816c7dad72099855fb0d46d41e";
|
||||||
|
hash = "sha256-t/uyK0X7qt6qxrScmkTU2TvcVJH97hSQuF0yyvSO/qQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/qt5ct
|
||||||
|
cp -r themes $out/share/qt5ct/colors
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Soothing pastel theme for qt5ct";
|
||||||
|
homepage = "https://github.com/catppuccin/qt5ct";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [pluiedev];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue