almanah: 0.11.1 → 0.12.0
https://gitlab.gnome.org/GNOME/almanah/blob/0.12.0/NEWS#L1-53
This commit is contained in:
parent
f7e558e0cd
commit
622b23cfda
1 changed files with 47 additions and 7 deletions
|
@ -1,19 +1,59 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool
|
||||
, libxml2, desktop-file-utils, wrapGAppsHook, evolution-data-server, gtkspell3, gpgme, libcryptui
|
||||
, glib, gtk3, gtksourceview3, sqlite, cairo, atk, gcr, gnome3 }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, atk
|
||||
, cairo
|
||||
, desktop-file-utils
|
||||
, evolution-data-server
|
||||
, gcr
|
||||
, gettext
|
||||
, glib
|
||||
, gnome3
|
||||
, gpgme
|
||||
, gtk3
|
||||
, gtksourceview3
|
||||
, gtkspell3
|
||||
, libcryptui
|
||||
, libxml2
|
||||
, meson
|
||||
, ninja
|
||||
, pkgconfig
|
||||
, sqlite
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "almanah";
|
||||
version = "0.11.1";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "1g0fyykq8bs3x1xqc0l0bk9zazcrxja784m68myymv1zfqqnp9h0";
|
||||
sha256 = "09rxx4s4c34d1axza6ayss33v78p44r9bpx058shllh1sf5avpcb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool libxml2 desktop-file-utils wrapGAppsHook ];
|
||||
nativeBuildInputs = [
|
||||
desktop-file-utils
|
||||
gettext
|
||||
libxml2
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [ glib gtk3 gtksourceview3 sqlite cairo atk gcr gtkspell3 evolution-data-server gnome3.evolution gpgme libcryptui ];
|
||||
buildInputs = [
|
||||
atk
|
||||
cairo
|
||||
evolution-data-server
|
||||
gcr
|
||||
glib
|
||||
gnome3.evolution
|
||||
gpgme
|
||||
gtk3
|
||||
gtksourceview3
|
||||
gtkspell3
|
||||
libcryptui
|
||||
sqlite
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
|
|
Loading…
Reference in a new issue