about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-05-31 23:08:37 +0000
committerGitHub <noreply@github.com>2019-05-31 23:08:37 +0000
commitd6b10a59d392bd2ebfa8a04fb9df6591c70436fe (patch)
treeb37aec5fbf34d4f73ce744d9ee3255e388fec976 /pkgs
parent4bb4df32aacc1ea647e6df80e9af14915173309d (diff)
parent7d7baa1a6148688cd47f9b9d91989ce93a9e553d (diff)
downloadnixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.tar
nixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.tar.gz
nixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.tar.bz2
nixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.tar.lz
nixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.tar.xz
nixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.tar.zst
nixlib-d6b10a59d392bd2ebfa8a04fb9df6591c70436fe.zip
Merge pull request #62327 from tadfisher/plata-theme
plata-theme: 0.8.0 -> 0.8.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/data/themes/plata/default.nix16
1 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/data/themes/plata/default.nix b/pkgs/data/themes/plata/default.nix
index 3b80c60044bd..df0201af3b86 100644
--- a/pkgs/data/themes/plata/default.nix
+++ b/pkgs/data/themes/plata/default.nix
@@ -3,31 +3,30 @@
 , cinnamonSupport ? true
 , gnomeFlashbackSupport ? true
 , gnomeShellSupport ? true
-, mateSupport ? true
 , openboxSupport ? true
 , xfceSupport ? true
 , gtkNextSupport ? false
 , plankSupport ? false
 , steamSupport ? false
-, telegramSupport ? false
-, tweetdeckSupport ? false, zip ? null
+, telegramSupport ? false, zip ? null
+, tweetdeckSupport ? false
 , selectionColor ? null # Primary color for 'selected-items' (Default: #3F51B5 = Indigo500)
 , accentColor ? null # Secondary color for notifications and OSDs (Default: #7986CB = Indigo300)
 , suggestionColor ? null # Secondary color for 'suggested' buttons (Default: #673AB7 = DPurple500)
 , destructionColor ? null # Tertiary color for 'destructive' buttons (Default: #F44336 = Red500)
 }:
 
-assert tweetdeckSupport -> zip != null;
+assert telegramSupport -> zip != null;
 
 stdenv.mkDerivation rec {
-  name = "plata-theme-${version}";
-  version = "0.8.0";
+  pname = "plata-theme";
+  version = "0.8.3";
 
   src = fetchFromGitLab {
     owner = "tista500";
     repo = "plata-theme";
     rev = version;
-    sha256 = "10xvfrc945zqlgzlx8zjyg0gnkwmq9vfjk0yqjy3gg62i65s8sch";
+    sha256 = "0ibgymdrw91lnng76lb0x55zg6nm9f2vap19wk7qsq3bcw6ny2zi";
   };
 
   preferLocalBuild = true;
@@ -41,7 +40,7 @@ stdenv.mkDerivation rec {
     libxml2
     gnome2.glib.dev
   ]
-  ++ stdenv.lib.optional tweetdeckSupport zip;
+  ++ stdenv.lib.optional telegramSupport zip;
 
   buildInputs = [
     gdk_pixbuf
@@ -61,7 +60,6 @@ stdenv.mkDerivation rec {
       (enableFeature cinnamonSupport "cinnamon")
       (enableFeature gnomeFlashbackSupport "flashback")
       (enableFeature gnomeShellSupport "gnome")
-      (enableFeature mateSupport "mate")
       (enableFeature openboxSupport "openbox")
       (enableFeature xfceSupport "xfce")
       (enableFeature gtkNextSupport "gtk_next")