nixpkgs/pkgs/desktops/pantheon/apps/appcenter/default.nix

107 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv
, nix-update-script
2019-10-02 01:50:07 +00:00
, appstream
, appstream-glib
, dbus
, desktop-file-utils
, elementary-gtk-theme
, elementary-icon-theme
, fetchFromGitHub
, fetchpatch
, flatpak
, gettext
, glib
, granite
, gtk3
, json-glib
, libgee
, libsoup
, libxml2
, meson
, ninja
, packagekit
, pantheon
2021-01-17 02:21:50 +00:00
, pkg-config
2019-10-02 01:50:07 +00:00
, python3
, vala
, polkit
2020-09-26 01:44:57 +00:00
, libhandy_0
2019-10-02 01:50:07 +00:00
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "appcenter";
2020-10-22 01:15:35 +00:00
version = "3.5.1";
2019-10-02 01:50:07 +00:00
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
sha256 = "MsaXdmL+M+NYAJrrwluleeNxqQg0soFbO/G/FqibBFI=";
2019-10-02 01:50:07 +00:00
};
patches = [
# Allow build with appstream 0.14.x
# https://github.com/elementary/appcenter/pull/1493
(fetchpatch {
url = "https://github.com/elementary/appcenter/commit/5807dd13fe3c715f26225aed8d7a0abdea0c2a64.patch";
sha256 = "BvEahG9lU9ZdgooFDFhm5evRvnKVcmcHLdmZPb85gbo=";
})
];
2019-10-02 01:50:07 +00:00
passthru = {
updateScript = nix-update-script {
attrPath = "pantheon.${pname}";
2019-10-02 01:50:07 +00:00
};
};
nativeBuildInputs = [
appstream-glib
2021-01-17 02:21:50 +00:00
dbus # for pkg-config
2019-10-02 01:50:07 +00:00
desktop-file-utils
gettext
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
2019-10-02 01:50:07 +00:00
python3
vala
wrapGAppsHook
];
buildInputs = [
appstream
elementary-gtk-theme
elementary-icon-theme
2019-10-02 01:50:07 +00:00
flatpak
glib
granite
gtk3
json-glib
libgee
2020-09-26 01:44:57 +00:00
libhandy_0 # doesn't support libhandy-1 yet
2019-10-02 01:50:07 +00:00
libsoup
libxml2
packagekit
polkit
2019-10-02 01:50:07 +00:00
];
mesonFlags = [
"-Dhomepage=false"
"-Dpayments=false"
"-Dcurated=false"
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
meta = with lib; {
homepage = "https://github.com/elementary/appcenter";
2019-10-02 01:50:07 +00:00
description = "An open, pay-what-you-want app store for indie developers, designed for elementary OS";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = pantheon.maintainers;
};
}