summary refs log tree commit diff
path: root/pkgs/data/icons/colloid-icon-theme
diff options
context:
space:
mode:
authorJosé Romildo <malaquias@gmail.com>2022-07-19 16:24:02 -0300
committerJosé Romildo <malaquias@gmail.com>2022-07-22 11:14:32 -0300
commit940e9e002ee800664d0ceaacc3192d9be0cb3ced (patch)
tree1bc874b4d197f1f570419426d9b94b6c86c47ef5 /pkgs/data/icons/colloid-icon-theme
parentcd4bd5840dafcbdbaea59b3237de33606d8957ca (diff)
downloadnixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.tar
nixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.tar.gz
nixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.tar.bz2
nixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.tar.lz
nixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.tar.xz
nixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.tar.zst
nixpkgs-940e9e002ee800664d0ceaacc3192d9be0cb3ced.zip
colloid-icon-theme: init at 2022-04-22
Diffstat (limited to 'pkgs/data/icons/colloid-icon-theme')
-rw-r--r--pkgs/data/icons/colloid-icon-theme/default.nix72
1 files changed, 72 insertions, 0 deletions
diff --git a/pkgs/data/icons/colloid-icon-theme/default.nix b/pkgs/data/icons/colloid-icon-theme/default.nix
new file mode 100644
index 00000000000..c1ae9e416e4
--- /dev/null
+++ b/pkgs/data/icons/colloid-icon-theme/default.nix
@@ -0,0 +1,72 @@
+{ lib
+, stdenvNoCC
+, fetchFromGitHub
+, gitUpdater
+, gtk3
+, hicolor-icon-theme
+, jdupes
+, schemeVariants ? []
+, colorVariants ? [] # default is blue
+}:
+
+let
+  pname = "colloid-icon-theme";
+
+in
+lib.checkListOfEnum "${pname}: scheme variants" [ "default" "nord" "dracula" ] schemeVariants
+lib.checkListOfEnum "${pname}: color variants" [ "default" "purple" "pink" "red" "orange" "yellow" "green" "teal" "grey" "all" ] colorVariants
+
+stdenvNoCC.mkDerivation rec {
+  inherit pname;
+  version = "2022-04-22";
+
+  src = fetchFromGitHub {
+    owner = "vinceliuice";
+    repo = pname;
+    rev = version;
+    hash = "sha256-0lUdsTjIfZ76Mm327jE1uudxtKVQbt17fsel6c2RdVM=";
+  };
+
+  nativeBuildInputs = [
+    gtk3
+    jdupes
+  ];
+
+  propagatedBuildInputs = [
+    hicolor-icon-theme
+  ];
+
+  dontDropIconThemeCache = true;
+
+  # These fixup steps are slow and unnecessary for this package.
+  # Package may install almost 400 000 small files.
+  dontPatchELF = true;
+  dontRewriteSymlinks = true;
+
+  postPatch = ''
+    patchShebangs install.sh
+  '';
+
+  installPhase = ''
+    runHook preInstall
+
+    name= ./install.sh \
+      ${lib.optionalString (schemeVariants != []) ("--scheme " + builtins.toString schemeVariants)} \
+      ${lib.optionalString (colorVariants != []) ("--theme " + builtins.toString colorVariants)} \
+      --dest $out/share/icons
+
+    jdupes --quiet --link-soft --recurse $out/share
+
+    runHook postInstall
+  '';
+
+  passthru.updateScript = gitUpdater { inherit pname version; };
+
+  meta = with lib; {
+    description = "Colloid icon theme";
+    homepage = "https://github.com/vinceliuice/colloid-icon-theme";
+    license = licenses.gpl3Only;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ romildo ];
+  };
+}