-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
dracula-theme: 1.3.0 -> 2.0 and rename ant-dracula to dracula-theme #99704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| { stdenv, fetchFromGitHub, gtk-engine-murrine }: | ||
|
|
||
| let | ||
| themeName = "Dracula"; | ||
| version = "2.0"; | ||
| in | ||
| stdenv.mkDerivation { | ||
| pname = "dracula-theme"; | ||
| inherit version; | ||
|
|
||
| src = fetchFromGitHub { | ||
| owner = "dracula"; | ||
| repo = "gtk"; | ||
| rev = "v${version}"; | ||
| sha256 = "10j706gnhdplhykdisp64vzzxpzgn48b5f1fkndcp340x7hf2mf3"; | ||
| }; | ||
|
|
||
| propagatedUserEnvPkgs = [ | ||
| gtk-engine-murrine | ||
| ]; | ||
|
|
||
| installPhase = '' | ||
| runHook preInstall | ||
| mkdir -p $out/share/themes/${themeName} | ||
| cp -a {assets,cinnamon,gnome-shell,gtk-2.0,gtk-3.0,gtk-3.20,index.theme,kde,metacity-1,unity,xfwm4} $out/share/themes/${themeName} | ||
| runHook postInstall | ||
| ''; | ||
|
|
||
| meta = with stdenv.lib; { | ||
| description = "Dracula variant of the Ant theme"; | ||
| homepage = "https://github.com/dracula/gtk"; | ||
| license = licenses.gpl3; | ||
| platforms = platforms.all; | ||
| maintainers = with maintainers; [ alexarice vonfry ]; | ||
| }; | ||
| } |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -18767,7 +18767,7 @@ in | |||
|
|
||||
| ant-bloody-theme = callPackage ../data/themes/ant-theme/ant-bloody.nix { }; | ||||
|
|
||||
| ant-dracula-theme = callPackage ../data/themes/ant-theme/ant-dracula.nix { }; | ||||
| dracula-theme = callPackage ../data/themes/dracula-theme { }; | ||||
|
||||
| traceXMLVal = x: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the alias should add an appropriate warning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can the change to
maintainer-list.nixbe in a separate commit titled "maintainers: add vonfry"