about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-03-08 21:48:21 +0100
committerGitHub <noreply@github.com>2021-03-08 21:48:21 +0100
commit206e603c60521961d1ecc83326f7cc5c7691d096 (patch)
tree10fbf0bce49a8a9e9ee4461b2768ba4ea6c4191d /pkgs/data
parent05c92a54d828b89ba6f477210e3b379bf923f26d (diff)
parent64f91849d483e8201e9a6fc888e72c8fac6a2446 (diff)
downloadnixlib-206e603c60521961d1ecc83326f7cc5c7691d096.tar
nixlib-206e603c60521961d1ecc83326f7cc5c7691d096.tar.gz
nixlib-206e603c60521961d1ecc83326f7cc5c7691d096.tar.bz2
nixlib-206e603c60521961d1ecc83326f7cc5c7691d096.tar.lz
nixlib-206e603c60521961d1ecc83326f7cc5c7691d096.tar.xz
nixlib-206e603c60521961d1ecc83326f7cc5c7691d096.tar.zst
nixlib-206e603c60521961d1ecc83326f7cc5c7691d096.zip
Merge pull request #115374 from 414owen/add-oranchelo-icon-theme
oranchelo-icon-theme: init at 0.8.0.1
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/icons/oranchelo-icon-theme/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/data/icons/oranchelo-icon-theme/default.nix b/pkgs/data/icons/oranchelo-icon-theme/default.nix
new file mode 100644
index 000000000000..9288b9307f55
--- /dev/null
+++ b/pkgs/data/icons/oranchelo-icon-theme/default.nix
@@ -0,0 +1,37 @@
+{ lib, stdenv, fetchFromGitHub, gtk3, plasma5Packages, hicolor-icon-theme }:
+
+stdenv.mkDerivation rec {
+  pname = "oranchelo-icon-theme";
+  version = "0.8.0.1";
+
+  src = fetchFromGitHub {
+    owner = "OrancheloTeam";
+    repo = pname;
+    rev = "096c8c8d550ac9a85f5f34f3f30243e6f198df2d";
+    sha256 = "sha256-TKi42SA33pGKdrPtGTpvxFbOP+5N93Y4BvO4CRTveLM=";
+  };
+
+  nativeBuildInputs = [
+    gtk3
+  ];
+
+  propagatedBuildInputs = [
+    plasma5Packages.breeze-icons
+    hicolor-icon-theme
+  ];
+
+  dontDropIconThemeCache = true;
+
+  installPhase = ''
+    mkdir -p $out/share/icons
+    cp -r $Oranchelo* $out/share/icons/
+  '';
+
+  meta = with lib; {
+    description = "Oranchelo icon theme";
+    homepage = "https://github.com/OrancheloTeam/oranchelo-icon-theme";
+    license = licenses.gpl3Only;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ _414owen ];
+  };
+}