3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/pantheon/apps/appcenter/default.nix

103 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv
, nix-update-script
2019-10-02 02:50:07 +01:00
, appstream
, appstream-glib
, dbus
, desktop-file-utils
, elementary-gtk-theme
, elementary-icon-theme
, fetchFromGitHub
, flatpak
, gettext
, glib
, granite
, gtk3
, json-glib
, libgee
2021-07-17 04:34:29 +01:00
, libhandy
2019-10-02 02:50:07 +01:00
, libsoup
, libxml2
, meson
, ninja
, packagekit
, pantheon
2021-01-17 02:21:50 +00:00
, pkg-config
2019-10-02 02:50:07 +01:00
, python3
, vala
, polkit
2019-10-02 02:50:07 +01:00
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "appcenter";
2021-08-03 02:26:14 +01:00
version = "3.7.1";
2019-10-02 02:50:07 +01:00
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
2021-08-03 02:26:14 +01:00
sha256 = "1llkc0p47jcx992lkwics86vv622dmmvm5hxrdsq26j9crcd5dam";
2019-10-02 02:50:07 +01:00
};
2021-08-03 02:26:14 +01:00
patches = [
# Try to remove other backends to make flatpak backend work.
# https://github.com/NixOS/nixpkgs/issues/70214
./flatpak-only.patch
];
2019-10-02 02:50:07 +01:00
passthru = {
updateScript = nix-update-script {
attrPath = "pantheon.${pname}";
2019-10-02 02:50:07 +01:00
};
};
nativeBuildInputs = [
appstream-glib
2021-01-17 02:21:50 +00:00
dbus # for pkg-config
2019-10-02 02:50:07 +01:00
desktop-file-utils
gettext
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
2019-10-02 02:50:07 +01:00
python3
vala
wrapGAppsHook
];
buildInputs = [
appstream
elementary-gtk-theme
elementary-icon-theme
2019-10-02 02:50:07 +01:00
flatpak
glib
granite
gtk3
json-glib
libgee
2021-07-17 04:34:29 +01:00
libhandy
2019-10-02 02:50:07 +01:00
libsoup
libxml2
packagekit
polkit
2019-10-02 02:50:07 +01: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 02:50:07 +01: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;
};
}