mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
shotwell: 0.30.2 -> 0.31.0
This commit is contained in:
parent
cf14ffdb24
commit
b3143f1755
@ -1,31 +1,89 @@
|
|||||||
{ fetchurl, stdenv, meson, ninja, gtk3, libexif, libgphoto2, libsoup, libxml2, vala, sqlite
|
{ stdenv
|
||||||
, webkitgtk, pkgconfig, gnome3, gst_all_1, libgudev, libraw, glib, json-glib, gcr
|
, fetchurl
|
||||||
, gettext, desktop-file-utils, gdk_pixbuf, librsvg, wrapGAppsHook
|
, fetchpatch
|
||||||
, gobject-introspection, itstool, libgdata, python3 }:
|
, meson
|
||||||
|
, ninja
|
||||||
|
, gtk3
|
||||||
|
, libexif
|
||||||
|
, libgphoto2
|
||||||
|
, libwebp
|
||||||
|
, libsoup
|
||||||
|
, libxml2
|
||||||
|
, vala
|
||||||
|
, sqlite
|
||||||
|
, webkitgtk
|
||||||
|
, pkgconfig
|
||||||
|
, gnome3
|
||||||
|
, gst_all_1
|
||||||
|
, libgudev
|
||||||
|
, libraw
|
||||||
|
, glib
|
||||||
|
, json-glib
|
||||||
|
, gcr
|
||||||
|
, libgee
|
||||||
|
, gexiv2
|
||||||
|
, librest
|
||||||
|
, gettext
|
||||||
|
, desktop-file-utils
|
||||||
|
, gdk_pixbuf
|
||||||
|
, librsvg
|
||||||
|
, wrapGAppsHook
|
||||||
|
, gobject-introspection
|
||||||
|
, itstool
|
||||||
|
, libgdata
|
||||||
|
, libchamplain
|
||||||
|
, python3
|
||||||
|
}:
|
||||||
|
|
||||||
# for dependencies see https://wiki.gnome.org/Apps/Shotwell/BuildingAndInstalling
|
# for dependencies see https://wiki.gnome.org/Apps/Shotwell/BuildingAndInstalling
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
pname = "shotwell";
|
pname = "shotwell";
|
||||||
version = "0.30.2";
|
version = "0.31.0";
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0pam0si110vkc65kh59lrmgkv91f9zxmf1gpfm99ixjgw25rfi8r";
|
sha256 = "1pwq953wl7h9cvw7rvlr6pcbq9w28kkr7ddb8x2si81ngp0imwyx";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja vala pkgconfig itstool gettext desktop-file-utils python3 wrapGAppsHook gobject-introspection
|
meson
|
||||||
|
ninja
|
||||||
|
vala
|
||||||
|
pkgconfig
|
||||||
|
itstool
|
||||||
|
gettext
|
||||||
|
desktop-file-utils
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
|
gobject-introspection
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3 libexif libgphoto2 libsoup libxml2 sqlite webkitgtk
|
gtk3
|
||||||
gst_all_1.gstreamer gst_all_1.gst-plugins-base gnome3.libgee
|
libexif
|
||||||
libgudev gnome3.gexiv2 gnome3.gsettings-desktop-schemas
|
libgphoto2
|
||||||
libraw json-glib glib gdk_pixbuf librsvg gnome3.rest
|
libwebp
|
||||||
gcr gnome3.adwaita-icon-theme libgdata
|
libsoup
|
||||||
|
libxml2
|
||||||
|
sqlite
|
||||||
|
webkitgtk
|
||||||
|
gst_all_1.gstreamer
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
libgee
|
||||||
|
libgudev
|
||||||
|
gexiv2
|
||||||
|
gnome3.gsettings-desktop-schemas
|
||||||
|
libraw
|
||||||
|
json-glib
|
||||||
|
glib
|
||||||
|
gdk_pixbuf
|
||||||
|
librsvg
|
||||||
|
librest
|
||||||
|
gcr
|
||||||
|
gnome3.adwaita-icon-theme
|
||||||
|
libgdata
|
||||||
|
libchamplain
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user