Unverified Commit 5367c317 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #216098 from garaiza-93/tokyo-night-gtk-init

tokyo-night-gtk: init at 2023.01.17
parents 063272c0 0e36d954
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -5188,6 +5188,12 @@
    githubId = 606000;
    name = "Gabriel Adomnicai";
  };
  garaiza-93 = {
    email = "araizagustavo93@gmail.com";
    github = "garaiza-93";
    githubId = 57430880;
    name = "Gustavo Araiza";
  };
  Gabriel439 = {
    email = "Gabriel439@gmail.com";
    github = "Gabriella439";
+38 −0
Original line number Diff line number Diff line
{ lib
, stdenvNoCC
, fetchFromGitHub
, gtk-engine-murrine
}:

stdenvNoCC.mkDerivation {
  pname = "tokyo-night-gtk";
  version = "2023.01.17";

  src = fetchFromGitHub {
    owner = "Fausto-Korpsvart";
    repo = "Tokyo-Night-GTK-Theme";
    rev = "f7ae3421ac0d415ca57fb6224e093e12b8a980bb";
    sha256 = "sha256-90V55pRfgiaP1huhD+3456ziJ2EU24iNQHt5Ro+g+M0=";
  };

  propagatedUserEnvPkgs = [
    gtk-engine-murrine
  ];

  dontBuild = true;

  installPhase = ''
    runHook preInstall
    mkdir -p $out/share/themes
    cp -a themes/* $out/share/themes
    runHook postInstall
  '';

  meta = with lib; {
    description = "A GTK theme based on the Tokyo Night colour palette.";
    homepage = "www.pling.com/p/1681315/";
    license = licenses.gpl3Only;
    platforms = platforms.unix;
    maintainers = with lib.maintainers; [ garaiza-93 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -33395,6 +33395,8 @@ with pkgs;
  tofi = callPackage ../applications/misc/tofi { };
  tokyo-night-gtk = callPackage ../data/themes/tokyo-night-gtk { };
  topydo = callPackage ../applications/misc/topydo {};
  torrential = callPackage ../applications/networking/p2p/torrential { };