aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-bloody.nix34
-rw-r--r--infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-nebula.nix34
-rw-r--r--infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant.nix34
3 files changed, 102 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-bloody.nix b/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-bloody.nix
new file mode 100644
index 000000000000..3c540889c13a
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-bloody.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, gtk-engine-murrine }:
+
+let
+ themeName = "Ant-Bloody";
+in
+stdenv.mkDerivation rec {
+ pname = "ant-bloody-theme";
+ version = "1.3.0";
+
+ src = fetchurl {
+ url = "https://github.com/EliverLara/${themeName}/releases/download/v${version}/${themeName}.tar";
+ sha256 = "0rrz50kmzjmqj17hvrw67pbaclwxv85i5m08s7842iky6dnn5z8s";
+ };
+
+ propagatedUserEnvPkgs = [
+ gtk-engine-murrine
+ ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/share/themes/${themeName}
+ cp -a * $out/share/themes/${themeName}
+ rm -r $out/share/themes/${themeName}/{Art,LICENSE,README.md,gtk-2.0/render-assets.sh}
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Bloody variant of the Ant theme";
+ homepage = "https://github.com/EliverLara/${themeName}";
+ license = licenses.gpl3;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ alexarice ];
+ };
+}
diff --git a/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-nebula.nix b/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-nebula.nix
new file mode 100644
index 000000000000..03ee3b5d2d42
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant-nebula.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, gtk-engine-murrine }:
+
+let
+ themeName = "Ant-Nebula";
+in
+stdenv.mkDerivation rec {
+ pname = "ant-nebula-theme";
+ version = "1.3.0";
+
+ src = fetchurl {
+ url = "https://github.com/EliverLara/${themeName}/releases/download/v${version}/${themeName}.tar";
+ sha256 = "1xpgw577nmgjk547mg2vvv0gdai60srgncykm5pb1w8dnlk69jbz";
+ };
+
+ propagatedUserEnvPkgs = [
+ gtk-engine-murrine
+ ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/share/themes/${themeName}
+ cp -a * $out/share/themes/${themeName}
+ rm -r $out/share/themes/${themeName}/{Art,LICENSE,README.md,gtk-2.0/render-assets.sh}
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Nebula variant of the Ant theme";
+ homepage = "https://github.com/EliverLara/${themeName}";
+ license = licenses.gpl3;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ alexarice ];
+ };
+}
diff --git a/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant.nix b/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant.nix
new file mode 100644
index 000000000000..736c8a1aa6ac
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/data/themes/ant-theme/ant.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, gtk-engine-murrine }:
+
+let
+ themeName = "Ant";
+in
+stdenv.mkDerivation rec {
+ pname = "ant-theme";
+ version = "1.3.0";
+
+ src = fetchurl {
+ url = "https://github.com/EliverLara/${themeName}/releases/download/v${version}/${themeName}.tar";
+ sha256 = "1r795v96ywzcb4dq08q2fdbmfia32g36cc512mhy41s8fb1a47dz";
+ };
+
+ propagatedUserEnvPkgs = [
+ gtk-engine-murrine
+ ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/share/themes/${themeName}
+ cp -a * $out/share/themes/${themeName}
+ rm -r $out/share/themes/${themeName}/{Art,LICENSE,README.md,gtk-2.0/render-assets.sh}
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A flat and light theme with a modern look";
+ homepage = "https://github.com/EliverLara/${themeName}";
+ license = licenses.gpl3;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ alexarice ];
+ };
+}