summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-12-10 23:32:46 -0500
committerGitHub <noreply@github.com>2019-12-10 23:32:46 -0500
commite96c9035243ff9adcb17b7bf2f9d85e2e513f50f (patch)
tree2e55a7120ae15b7fbe31a352bb22dc80ef21352c /pkgs/data
parente159f1d457ec376b4af3d66c5fdacc7af641290b (diff)
parent4c8ffa4e8f2565b6dc35ad066ac678a25cf5628a (diff)
downloadnixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.tar
nixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.tar.gz
nixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.tar.bz2
nixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.tar.lz
nixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.tar.xz
nixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.tar.zst
nixpkgs-e96c9035243ff9adcb17b7bf2f9d85e2e513f50f.zip
Merge pull request #74966 from Fuzen-py/sweet
sweet: init at 1.10.5
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/sweet/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/data/themes/sweet/default.nix b/pkgs/data/themes/sweet/default.nix
new file mode 100644
index 00000000000..9d3603cbf52
--- /dev/null
+++ b/pkgs/data/themes/sweet/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchurl, unzip }:
+
+stdenv.mkDerivation rec {
+  pname = "sweet";
+  version = "1.10.5";
+
+  srcs = [
+    (fetchurl {
+      url = "https://github.com/EliverLara/Sweet/releases/download/v${version}/Sweet-Ambar-Blue.zip";
+      sha256 = "11040hx8ci4vbnyaj63zj924v0ln7rjm9a28mcqdax60h3dp12lj";
+    })
+    (fetchurl {
+      url = "https://github.com/EliverLara/Sweet/releases/download/v${version}/Sweet-Ambar.zip";
+      sha256 = "0lvnjmirpwdav8q0bfbhybwkr2h6dilc7lhhj18xd2k57xadjmxr";
+    })
+    (fetchurl {
+      url = "https://github.com/EliverLara/Sweet/releases/download/v${version}/Sweet-Dark.zip";
+      sha256 = "0a7mh1pgvi8w1ahsmvgnmpdawm30lcjqk4zqvg0lqadsd04dn4h1";
+    })
+    (fetchurl {
+      url = "https://github.com/EliverLara/Sweet/releases/download/v${version}/Sweet-mars.zip";
+      sha256 = "0n2dkl35qrik10wvhvkayyra987p03g56pxhz5kc73cbsl5zd96l";
+    })
+    (fetchurl {
+      url = "https://github.com/EliverLara/Sweet/releases/download/v${version}/Sweet.zip";
+      sha256 = "0wwmc3wj2pjg4kimfkvcsimk3s4s7l7k000vxqi8yjlfs70f273c";
+    })
+  ];
+
+  nativeBuildInputs = [ unzip ];
+
+  sourceRoot = ".";
+
+  installPhase = ''
+    mkdir -p $out/share/themes/
+    cp -a Sweet* $out/share/themes/
+    rm $out/share/themes/*/{LICENSE,README*}
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Light and dark colorful Gtk3.20+ theme";
+    homepage = "https://github.com/EliverLara/Sweet";
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ fuzen ];
+    platforms = platforms.linux;
+  };
+}