summary refs log tree commit diff
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2019-09-17 09:54:20 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2019-09-17 09:54:20 -0300
commit6d370a57b4485cd256f55899e9f64a2b295ce66d (patch)
tree83b7eb34b691189a07d39fb6086dbc5d2d6bd9a7 /pkgs/data/icons
parente589f08b3bcdbe38aabb3352607dc3e7b5240686 (diff)
downloadnixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.tar
nixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.tar.gz
nixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.tar.bz2
nixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.tar.lz
nixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.tar.xz
nixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.tar.zst
nixpkgs-6d370a57b4485cd256f55899e9f64a2b295ce66d.zip
papirus-maia-icon-theme: init at 2019-07-26
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/papirus-maia-icon-theme/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/data/icons/papirus-maia-icon-theme/default.nix b/pkgs/data/icons/papirus-maia-icon-theme/default.nix
new file mode 100644
index 00000000000..e15e64c2101
--- /dev/null
+++ b/pkgs/data/icons/papirus-maia-icon-theme/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, cmake, gtk3 }:
+
+stdenv.mkDerivation rec {
+  pname = "papirus-maia-icon-theme";
+  version = "2019-07-26";
+
+  src = fetchFromGitHub {
+    owner = "Ste74";
+    repo = pname;
+    rev = "90d47c817cc0edeed8b5a90335e669948ff4a116";
+    sha256 = "0d6lvdg5nw5wfaq8lxszcws174vg12ywkrqzn6czimhmhp48jf5p";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    gtk3
+  ];
+
+  postPatch = ''
+    substituteInPlace CMakeLists.txt --replace /usr "$out"
+  '';
+
+  postFixup = ''
+    for theme in $out/share/icons/*; do
+      gtk-update-icon-cache $theme
+    done
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Manjaro variation of Papirus icon theme";
+    homepage = https://github.com/Ste74/papirus-maia-icon-theme;
+    license = licenses.lgpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ romildo ];
+  };
+}