audiobookshelf: 2.18.1 -> 2.19.0 (#378967)
[NixPkgs.git] / pkgs / by-name / dr / dracula-qt5-theme / package.nix
blob57085a65ecd3f452ac09b8f73a66fde5de50e061
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "dracula-theme";
9   version = "unstable-2022-05-21";
11   src = fetchFromGitHub {
12     owner = "dracula";
13     repo = "qt5";
14     rev = "7b25ee305365f6e62efb2c7aca3b4635622b778c";
15     hash = "sha256-tfUjAb+edbJ+5qar4IxWr4h3Si6MIwnbCrwI2ZdUFAM=";
16   };
18   installPhase = ''
19     runHook preInstall
21     install -D Dracula.conf $out/share/qt5ct/colors/Dracula.conf
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "Dark theme for qt5";
28     homepage = "https://github.com/dracula/qt5";
29     license = licenses.mit;
30     platforms = platforms.all;
31     maintainers = with maintainers; [ vonfry ];
32   };