56 lines
1.9 KiB
Nix
56 lines
1.9 KiB
Nix
{ stdenv, fetchurl, pkgconfig, meson, ninja, gettext, gnome3, wrapGAppsHook, packagekit, ostree
|
|
, glib, appstream-glib, libsoup, polkit, attr, acl, libyaml, isocodes, gtkspell3, libxslt
|
|
, json-glib, libsecret, valgrind-light, docbook_xsl, docbook_xml_dtd_42, gtk-doc, desktop-file-utils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnome-software-${version}";
|
|
version = "3.26.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-software/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "2f74fd5fb222c99d4fcb91500cea0c62a0eb8022700bdea51acecb41c63f8e48";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "gnome-software"; attrPath = "gnome3.gnome-software"; };
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig meson ninja gettext wrapGAppsHook libxslt docbook_xml_dtd_42
|
|
valgrind-light docbook_xsl gtk-doc desktop-file-utils ];
|
|
buildInputs = [ gnome3.gtk glib packagekit appstream-glib libsoup
|
|
gnome3.gsettings-desktop-schemas gnome3.gnome-desktop
|
|
gtkspell3 json-glib libsecret ostree
|
|
polkit attr acl libyaml ];
|
|
propagatedBuildInputs = [ isocodes ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
postPatch = ''
|
|
patchShebangs meson_post_install.sh
|
|
'';
|
|
|
|
mesonFlags = [
|
|
"-Denable-flatpak=false"
|
|
"-Denable-rpm=false"
|
|
"-Denable-fwupd=false"
|
|
"-Denable-oauth=false"
|
|
"-Denable-ubuntu-reviews=false"
|
|
"-Denable-gudev=false"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/xml/
|
|
ln -s ${isocodes}/share/xml/iso-codes $out/share/xml/iso-codes
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.freedesktop.org/software/PackageKit/;
|
|
platforms = platforms.linux;
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
description = "GNOME Software lets you install and update applications and system extensions.";
|
|
};
|
|
}
|