-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
materia-theme-transparent: init at 20210322
- Loading branch information
1 parent
239c623
commit b329619
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
lib, | ||
fetchFromGitHub, | ||
materia-theme, | ||
}: | ||
materia-theme.overrideAttrs (oldAttrs: rec { | ||
pname = "materia-theme-transparent"; | ||
version = "0-unstable-2021-03-22"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ckissane"; | ||
repo = pname; | ||
rev = "c5d95bbddd59a717bfc4976737af429a89ba74e0"; | ||
sha256 = "sha256-dHcwPTZFWO42wu1LbtGCMm2w/YHbjSUJnRKcaFllUbs="; | ||
}; | ||
|
||
meta = { | ||
description = "Transparent Material Design theme for GNOME/GTK based desktop environments."; | ||
homepage = "https://github.com/ckissane/materia-theme-transparent"; | ||
license = lib.licenses.gpl2Only; | ||
platforms = lib.platforms.linux; | ||
maintainers = [ lib.maintainers.corbinwunderlich ]; | ||
}; | ||
}) |