ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / catppuccin-qt5ct / package.nix
blobf9b7a85c8cfb91d965b525221f84aa1c2f7e8e61
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
6 stdenvNoCC.mkDerivation {
7   pname = "catppuccin-qt5ct";
8   version = "2023-03-21";
10   src = fetchFromGitHub {
11     owner = "catppuccin";
12     repo = "qt5ct";
13     rev = "89ee948e72386b816c7dad72099855fb0d46d41e";
14     hash = "sha256-t/uyK0X7qt6qxrScmkTU2TvcVJH97hSQuF0yyvSO/qQ=";
15   };
17   installPhase = ''
18     runHook preInstall
19     mkdir -p $out/share/qt5ct
20     cp -r themes $out/share/qt5ct/colors
21     runHook postInstall
22   '';
24   meta = with lib; {
25     description = "Soothing pastel theme for qt5ct";
26     homepage = "https://github.com/catppuccin/qt5ct";
27     license = licenses.mit;
28     maintainers = with maintainers; [pluiedev];
29     platforms = platforms.all;
30   };