almanah: 0.12.0 → 0.12.2

https://gitlab.gnome.org/GNOME/almanah/-/compare/0.12.0...0.12.2
This commit is contained in:
Jan Tojnar 2020-09-12 15:37:15 +02:00
parent 1bdad26c20
commit 52df62ec9b
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,6 +1,5 @@
{ stdenv { stdenv
, fetchurl , fetchurl
, fetchpatch
, atk , atk
, cairo , cairo
, desktop-file-utils , desktop-file-utils
@ -17,36 +16,29 @@
, libxml2 , libxml2
, meson , meson
, ninja , ninja
, pkgconfig , pkg-config
, python3
, sqlite , sqlite
, wrapGAppsHook , wrapGAppsHook
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "almanah"; pname = "almanah";
version = "0.12.0"; version = "0.12.2";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "09rxx4s4c34d1axza6ayss33v78p44r9bpx058shllh1sf5avpcb"; sha256 = "IWYOnOu0C9uQ9k1dgWkJ6Kv+o/jY+6Llfsi4PusHE24=";
}; };
patches = [
# Fix gpgme detection
# https://gitlab.gnome.org/GNOME/almanah/merge_requests/7
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/almanah/commit/4b979c4145ef2fbceebb3849a70df1d0ceb1bb93.patch";
sha256 = "0wwkgqr5vi597j734xq0fwgk1zpcabp8wi8b1lnb1ksnqfi3wwxb";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
desktop-file-utils desktop-file-utils
gettext gettext
libxml2 libxml2
meson meson
ninja ninja
pkgconfig pkg-config
python3
wrapGAppsHook wrapGAppsHook
]; ];