summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/sushi
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2019-03-03 19:32:00 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-04-05 11:40:20 +0200
commite026e259f36ab5ad0e2b32a349ff4e7f959d5a59 (patch)
treebc1080aa4d605cbc5b25de4cd249a3aaaf8948f1 /pkgs/desktops/gnome-3/core/sushi
parentb571bb26bca4ff643fbda63a7b3433308ce7e29b (diff)
downloadnixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.tar
nixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.tar.gz
nixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.tar.bz2
nixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.tar.lz
nixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.tar.xz
nixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.tar.zst
nixpkgs-e026e259f36ab5ad0e2b32a349ff4e7f959d5a59.zip
gnome3.sushi: 3.30.0 -> 3.32.0
- port to meson
- replace intltool with gettext
- remove no longer leaky dependencies
Diffstat (limited to 'pkgs/desktops/gnome-3/core/sushi')
-rw-r--r--pkgs/desktops/gnome-3/core/sushi/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/desktops/gnome-3/core/sushi/default.nix b/pkgs/desktops/gnome-3/core/sushi/default.nix
index 77c216e7376..478aac8c173 100644
--- a/pkgs/desktops/gnome-3/core/sushi/default.nix
+++ b/pkgs/desktops/gnome-3/core/sushi/default.nix
@@ -1,25 +1,25 @@
-{ stdenv, fetchurl, pkgconfig, file, intltool, gobject-introspection, glib
-, clutter-gtk, clutter-gst, gnome3, aspell, hspell, gtksourceview, gjs
+{ stdenv, fetchurl, pkgconfig, meson, gettext, gobject-introspection, glib
+, clutter-gtk, clutter-gst, gnome3, gtksourceview, gjs
 , webkitgtk, libmusicbrainz5, icu, wrapGAppsHook, gst_all_1
-, gdk_pixbuf, librsvg, gtk3, harfbuzz }:
+, gdk_pixbuf, librsvg, gtk3, harfbuzz, ninja }:
 
 stdenv.mkDerivation rec {
   name = "sushi-${version}";
-  version = "3.30.0";
+  version = "3.32.0";
 
   src = fetchurl {
     url = "mirror://gnome/sources/sushi/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
-    sha256 = "0zpaiw5r734fky3zq95a6szwn7srbkpixajqg2xvdivhhx4mbnnj";
+    sha256 = "0f1i8qp39gq749h90f7nwgrj4q6y55jnyh62n1v8hxvlk0b2wqnx";
   };
 
-  nativeBuildInputs = [ pkgconfig file intltool gobject-introspection wrapGAppsHook ];
+  nativeBuildInputs = [
+    pkgconfig meson ninja gettext gobject-introspection wrapGAppsHook
+  ];
   buildInputs = [
     glib gtk3 gnome3.evince icu harfbuzz
     clutter-gtk clutter-gst gjs gtksourceview gdk_pixbuf
     librsvg libmusicbrainz5 webkitgtk
     gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
-    # cannot find -laspell, -lhspell
-    aspell hspell
   ];
 
   enableParallelBuilding = true;