about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.18/core/yelp
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-09-25 10:36:01 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-09-25 10:48:41 +0200
commit26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9 (patch)
tree6d0f51f30841d919d2ff07ff305ae100a857b02a /pkgs/desktops/gnome-3/3.18/core/yelp
parent41fc49ed7e94d9a0aef044a6ea34c142e376d3f7 (diff)
downloadnixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.gz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.bz2
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.lz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.xz
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.tar.zst
nixlib-26aea8b1aa798fa4cae5cf45953f8e3f3b7dbea9.zip
gnome3: init 3.18
Diffstat (limited to 'pkgs/desktops/gnome-3/3.18/core/yelp')
-rw-r--r--pkgs/desktops/gnome-3/3.18/core/yelp/default.nix26
-rw-r--r--pkgs/desktops/gnome-3/3.18/core/yelp/src.nix10
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/3.18/core/yelp/default.nix b/pkgs/desktops/gnome-3/3.18/core/yelp/default.nix
new file mode 100644
index 000000000000..13464137bd8b
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/core/yelp/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib
+, file, librsvg, gnome3, gdk_pixbuf, sqlite
+, bash, makeWrapper, itstool, libxml2, libxslt, icu, gst_all_1
+, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+  inherit (import ./src.nix fetchurl) name src;
+
+  propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
+
+  preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
+
+  buildInputs = [ pkgconfig gtk3 glib webkitgtk intltool itstool sqlite
+                  libxml2 libxslt icu file makeWrapper gnome3.yelp_xsl
+                  librsvg gdk_pixbuf gnome3.defaultIconTheme
+                  gnome3.gsettings_desktop_schemas wrapGAppsHook
+                  gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ];
+
+  meta = with stdenv.lib; {
+    homepage = https://wiki.gnome.org/Apps/Yelp;
+    description = "The help viewer in Gnome";
+    maintainers = gnome3.maintainers;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+  };
+}
diff --git a/pkgs/desktops/gnome-3/3.18/core/yelp/src.nix b/pkgs/desktops/gnome-3/3.18/core/yelp/src.nix
new file mode 100644
index 000000000000..cb25d3d30c67
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.18/core/yelp/src.nix
@@ -0,0 +1,10 @@
+# Autogenerated by maintainers/scripts/gnome.sh update
+
+fetchurl: {
+  name = "yelp-3.18.0";
+
+  src = fetchurl {
+    url = mirror://gnome/sources/yelp/3.18/yelp-3.18.0.tar.xz;
+    sha256 = "a8c201e520c87832d017439492e4343e957a90da5c6d85060e8dd3b28ffee72e";
+  };
+}