pantheon.appcenter: init at 3.2.0
This commit is contained in:
parent
ea910c7b83
commit
ce5ccf8b44
92
pkgs/desktops/pantheon/apps/appcenter/default.nix
Normal file
92
pkgs/desktops/pantheon/apps/appcenter/default.nix
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
{ stdenv
|
||||||
|
, 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
|
||||||
|
, pkgconfig
|
||||||
|
, python3
|
||||||
|
, vala
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "appcenter";
|
||||||
|
version = "3.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "elementary";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0xsxm0qgmnljd4s8m6xajzsjp9skpsa8wwlwqmc5yx34diad7zag";
|
||||||
|
};
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = pantheon.updateScript {
|
||||||
|
repoName = pname;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
appstream-glib
|
||||||
|
dbus # for pkgconfig
|
||||||
|
desktop-file-utils
|
||||||
|
gettext
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
vala
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
appstream
|
||||||
|
elementary-icon-theme
|
||||||
|
elementary-gtk-theme
|
||||||
|
flatpak
|
||||||
|
glib
|
||||||
|
granite
|
||||||
|
gtk3
|
||||||
|
json-glib
|
||||||
|
libgee
|
||||||
|
libsoup
|
||||||
|
libxml2
|
||||||
|
packagekit
|
||||||
|
];
|
||||||
|
|
||||||
|
mesonFlags = [
|
||||||
|
"-Dhomepage=false"
|
||||||
|
"-Dpayments=false"
|
||||||
|
"-Dcurated=false"
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x meson/post_install.py
|
||||||
|
patchShebangs meson/post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/elementary/appcenter;
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -66,6 +66,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
|||||||
|
|
||||||
#### APPS
|
#### APPS
|
||||||
|
|
||||||
|
appcenter = callPackage ./apps/appcenter { };
|
||||||
|
|
||||||
elementary-calculator = callPackage ./apps/elementary-calculator { };
|
elementary-calculator = callPackage ./apps/elementary-calculator { };
|
||||||
|
|
||||||
elementary-calendar = callPackage ./apps/elementary-calendar { };
|
elementary-calendar = callPackage ./apps/elementary-calendar { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user