base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / dr / dracula-qt5-theme / package.nix
blob5a618c9618bcd589b1ea43abd354465bbdb8751d
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation {
4   pname = "dracula-theme";
5   version = "unstable-2022-05-21";
7   src = fetchFromGitHub {
8     owner = "dracula";
9     repo = "qt5";
10     rev = "7b25ee305365f6e62efb2c7aca3b4635622b778c";
11     hash = "sha256-tfUjAb+edbJ+5qar4IxWr4h3Si6MIwnbCrwI2ZdUFAM=";
12   };
14   installPhase = ''
15     runHook preInstall
17     install -D Dracula.conf $out/share/qt5ct/colors/Dracula.conf
19     runHook postInstall
20   '';
22   meta = with lib; {
23     description = "Dark theme for qt5";
24     homepage = "https://github.com/dracula/qt5";
25     license = licenses.mit;
26     platforms = platforms.all;
27     maintainers = with maintainers; [ vonfry ];
28   };