summary refs log tree commit diff
path: root/pkgs/data/themes
diff options
context:
space:
mode:
authorPasquale <p3dimaria@hotmail.it>2022-01-30 20:26:23 +0100
committerPasquale <p3dimaria@hotmail.it>2022-02-07 15:48:35 +0100
commitfa0e7ec94400969679cf98099df2622f61732fdf (patch)
tree8db07c74c74414e5d2373db3cb16fb11dfa1907f /pkgs/data/themes
parent5af7724cbb00e5ebff9de2402b4ef25866becaf4 (diff)
downloadnixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.tar
nixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.tar.gz
nixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.tar.bz2
nixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.tar.lz
nixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.tar.xz
nixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.tar.zst
nixpkgs-fa0e7ec94400969679cf98099df2622f61732fdf.zip
artim-dark: init at unstable-2021-12-29
Diffstat (limited to 'pkgs/data/themes')
-rw-r--r--pkgs/data/themes/artim-dark/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/data/themes/artim-dark/default.nix b/pkgs/data/themes/artim-dark/default.nix
new file mode 100644
index 00000000000..9485f46b19a
--- /dev/null
+++ b/pkgs/data/themes/artim-dark/default.nix
@@ -0,0 +1,35 @@
+{ lib, stdenvNoCC, fetchFromGitHub }:
+
+stdenvNoCC.mkDerivation rec{
+  pname = "artim-dark";
+  version = "unstable-2021-12-29";
+
+  src = fetchFromGitHub {
+    owner="Mrcuve0";
+    repo="Aritim-Dark";
+    rev = "99cd330a1ab4814260e28f15431e3338a1103668";
+    hash = "sha256-xGnw5KpXbVyDdTuAkav1Hec6bitpZdPzZk0xv7WHTdY=";
+  };
+
+  dontBuild = true;
+  installPhase = ''
+    mkdir -p $out/share/plasma/desktoptheme
+    cp -R KDE/plasmaTheme/Aritim-Dark* $out/share/plasma/desktoptheme
+    mkdir -p $out/share/aurorae/themes
+    cp -R KDE/auroraeTheme $out/share/aurorae/themes/Aritim-Dark
+    mkdir -p $out/share/color-schemes
+    cp -R KDE/colorScheme/*.colors $out/share/color-schemes
+    mkdir -p $out/share/plasma/look-and-feel
+    cp -R KDE/globalTheme $out/share/plasma/look-and-feel/Aritim-Dark
+    mkdir -p $out/share/themes
+    cp -R GTK $out/share/themes/Aritim-Dark
+  '';
+
+  meta = {
+    description = "Dark theme deeply inspired by the Ayu Dark color palette";
+    homepage = "https://github.com/Mrcuve0/Aritim-Dark";
+    license = with lib.licenses; [ gpl3Only ];
+    platforms = lib.platforms.unix;
+    maintainers = [ lib.maintainers.pasqui23 ];
+  };
+}