summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorElyhaka <57923898+Elyhaka@users.noreply.github.com>2019-12-11 16:34:41 +0100
committerElyhaka <57923898+Elyhaka@users.noreply.github.com>2019-12-20 00:19:06 +0100
commit79850f5df83622a3e5f60a34e7178a52e4cae539 (patch)
treeac5e617c2157966eea9aef0c4cb4cc6c3d08921d /pkgs/data
parentdb49bd909e96befff25da86306672dc5ed969f5a (diff)
downloadnixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.tar
nixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.tar.gz
nixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.tar.bz2
nixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.tar.lz
nixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.tar.xz
nixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.tar.zst
nixpkgs-79850f5df83622a3e5f60a34e7178a52e4cae539.zip
pop-gtk-theme: init at 2019-12-17
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/pop-gtk/default.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/pkgs/data/themes/pop-gtk/default.nix b/pkgs/data/themes/pop-gtk/default.nix
new file mode 100644
index 00000000000..151fadddc16
--- /dev/null
+++ b/pkgs/data/themes/pop-gtk/default.nix
@@ -0,0 +1,62 @@
+{ stdenv
+, fetchFromGitHub
+, meson
+, ninja
+, sassc
+, gtk3
+, inkscape
+, optipng
+, gtk-engine-murrine
+, gdk-pixbuf
+, librsvg
+}:
+
+stdenv.mkDerivation rec {
+  pname = "pop-gtk-theme";
+  version = "2019-12-17";
+
+  src = fetchFromGitHub {
+    owner = "pop-os";
+    repo = "gtk-theme";
+    rev = "77601545f049251bce9c63a07f0d9819aa27cb60";
+    sha256 = "0bmkcdr1z9m3inrw33zprq2a4jawql4724a84nr89r19xllj2z1s";
+  };
+
+  nativeBuildInputs = [
+    meson
+    ninja
+    sassc
+    gtk3
+    inkscape
+    optipng
+  ];
+
+  buildInputs = [
+    gdk-pixbuf
+    librsvg
+  ];
+
+  propagatedUserEnvPkgs = [
+    gtk-engine-murrine
+  ];
+
+  postPatch = ''
+    for file in $(find -name render-\*.sh); do
+      patchShebangs "$file"
+
+      substituteInPlace "$file" \
+        --replace 'INKSCAPE="/usr/bin/inkscape"' \
+                  'INKSCAPE="inkscape"' \
+        --replace 'OPTIPNG="/usr/bin/optipng"' \
+                  'OPTIPNG="optipng"'
+    done
+  '';
+
+  meta = with stdenv.lib; {
+    description = "System76 Pop GTK+ Theme";
+    homepage = "https://github.com/pop-os/gtk-theme";
+    license = with licenses; [ gpl3 lgpl21 cc-by-sa-40 ];
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ elyhaka ];
+  };
+}