mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
Merge pull request #64186 from tadfisher/plata-theme
plata-theme: 0.8.3 -> 0.8.7
This commit is contained in:
commit
a835adc10c
|
@ -1,14 +1,15 @@
|
|||
{ stdenv, fetchFromGitLab, autoreconfHook, pkgconfig, parallel
|
||||
, sassc, inkscape, libxml2, gnome2, gdk_pixbuf, librsvg, gtk-engine-murrine
|
||||
, sassc, inkscape, libxml2, glib, gdk_pixbuf, librsvg, gtk-engine-murrine
|
||||
, cinnamonSupport ? true
|
||||
, gnomeFlashbackSupport ? true
|
||||
, gnomeShellSupport ? true
|
||||
, openboxSupport ? true
|
||||
, xfceSupport ? true
|
||||
, mateSupport ? true, gtk3, marco
|
||||
, gtkNextSupport ? false
|
||||
, plankSupport ? false
|
||||
, steamSupport ? false
|
||||
, telegramSupport ? false, zip ? null
|
||||
, telegramSupport ? false, zip
|
||||
, tweetdeckSupport ? false
|
||||
, selectionColor ? null # Primary color for 'selected-items' (Default: #3F51B5 = Indigo500)
|
||||
, accentColor ? null # Secondary color for notifications and OSDs (Default: #7986CB = Indigo300)
|
||||
|
@ -16,17 +17,15 @@
|
|||
, destructionColor ? null # Tertiary color for 'destructive' buttons (Default: #F44336 = Red500)
|
||||
}:
|
||||
|
||||
assert telegramSupport -> zip != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "plata-theme";
|
||||
version = "0.8.3";
|
||||
version = "0.8.7";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "tista500";
|
||||
repo = "plata-theme";
|
||||
rev = version;
|
||||
sha256 = "0ibgymdrw91lnng76lb0x55zg6nm9f2vap19wk7qsq3bcw6ny2zi";
|
||||
sha256 = "1rn51yj7f7bclvrwwqwid4z9cpap4yd0zw0xs08c36zcjmr28426";
|
||||
};
|
||||
|
||||
preferLocalBuild = true;
|
||||
|
@ -38,8 +37,9 @@ stdenv.mkDerivation rec {
|
|||
sassc
|
||||
inkscape
|
||||
libxml2
|
||||
gnome2.glib.dev
|
||||
glib.dev
|
||||
]
|
||||
++ stdenv.lib.optionals mateSupport [ gtk3 marco ]
|
||||
++ stdenv.lib.optional telegramSupport zip;
|
||||
|
||||
buildInputs = [
|
||||
|
@ -62,6 +62,7 @@ stdenv.mkDerivation rec {
|
|||
(enableFeature gnomeShellSupport "gnome")
|
||||
(enableFeature openboxSupport "openbox")
|
||||
(enableFeature xfceSupport "xfce")
|
||||
(enableFeature mateSupport "mate")
|
||||
(enableFeature gtkNextSupport "gtk_next")
|
||||
(enableFeature plankSupport "plank")
|
||||
(enableFeature steamSupport "airforsteam")
|
||||
|
|
|
@ -16637,7 +16637,9 @@ in
|
|||
|
||||
plano-theme = callPackage ../data/themes/plano { };
|
||||
|
||||
plata-theme = callPackage ../data/themes/plata {};
|
||||
plata-theme = callPackage ../data/themes/plata {
|
||||
inherit (mate) marco;
|
||||
};
|
||||
|
||||
poly = callPackage ../data/fonts/poly { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue