mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
gnome3.sushi: 3.30.0 -> 3.32.0
- port to meson - replace intltool with gettext - remove no longer leaky dependencies
This commit is contained in:
parent
b571bb26bc
commit
e026e259f3
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue