2016-08-04 17:49:58 +00:00
|
|
|
{ stdenv, fetchFromGitHub, lib
|
|
|
|
, intltool, glib, pkgconfig, polkit, python, sqlite, systemd
|
2016-08-21 17:18:21 +00:00
|
|
|
, gobjectIntrospection, vala_0_23, gtk_doc, autoreconfHook, autoconf-archive
|
2016-12-17 15:53:27 +00:00
|
|
|
# TODO: set enableNixBackend to true, as soon as it builds
|
|
|
|
, nix, enableNixBackend ? false, boost
|
2016-06-16 19:18:09 +00:00
|
|
|
, enableCommandNotFound ? false
|
2016-09-28 15:46:29 +00:00
|
|
|
, enableBashCompletion ? false, bash-completion ? null }:
|
2016-06-16 19:18:09 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-08-04 17:49:58 +00:00
|
|
|
name = "packagekit-${version}";
|
|
|
|
version = "1.1.3";
|
2015-08-19 19:47:35 +00:00
|
|
|
|
2016-06-16 19:18:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hughsie";
|
|
|
|
repo = "PackageKit";
|
2016-08-04 17:49:58 +00:00
|
|
|
rev = "PACKAGEKIT_${lib.replaceStrings ["."] ["_"] version}";
|
|
|
|
sha256 = "150mpar7bhlvwfpwsr6zrjn3yggvklzr6nlhk0shaxnrfkfxvvb6";
|
2015-08-19 19:47:35 +00:00
|
|
|
};
|
|
|
|
|
2016-08-21 17:18:21 +00:00
|
|
|
buildInputs = [ glib polkit systemd python gobjectIntrospection vala_0_23 ]
|
2016-09-28 15:46:29 +00:00
|
|
|
++ lib.optional enableBashCompletion bash-completion;
|
2016-06-16 19:18:09 +00:00
|
|
|
propagatedBuildInputs = [ sqlite nix boost ];
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig autoreconfHook autoconf-archive gtk_doc ];
|
|
|
|
|
|
|
|
preAutoreconf = ''
|
|
|
|
gtkdocize
|
|
|
|
intltoolize
|
|
|
|
'';
|
2015-08-19 19:47:35 +00:00
|
|
|
|
2015-11-23 14:25:58 +00:00
|
|
|
configureFlags = [
|
2016-06-16 19:18:09 +00:00
|
|
|
"--enable-systemd"
|
|
|
|
"--disable-dummy"
|
2015-11-23 14:25:58 +00:00
|
|
|
"--disable-cron"
|
2016-06-16 19:18:09 +00:00
|
|
|
"--disable-introspection"
|
|
|
|
"--disable-offline-update"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-dbus-sys=$(out)/etc/dbus-1/system.d"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/lib/systemd/system/"
|
|
|
|
]
|
2016-12-17 15:53:27 +00:00
|
|
|
++ lib.optional enableNixBackend "--enable-nix"
|
2016-08-04 17:49:58 +00:00
|
|
|
++ lib.optional (!enableBashCompletion) "--disable-bash-completion"
|
|
|
|
++ lib.optional (!enableCommandNotFound) "--disable-command-not-found";
|
2015-08-19 19:47:35 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-06-16 19:18:09 +00:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2015-08-19 19:47:35 +00:00
|
|
|
|
2016-08-04 17:49:58 +00:00
|
|
|
meta = with lib; {
|
2015-08-19 19:47:35 +00:00
|
|
|
description = "System to facilitate installing and updating packages";
|
|
|
|
longDescription = ''
|
|
|
|
PackageKit is a system designed to make installing and updating software
|
|
|
|
on your computer easier. The primary design goal is to unify all the
|
|
|
|
software graphical tools used in different distributions, and use some of
|
|
|
|
the latest technology like PolicyKit. The actual nuts-and-bolts distro
|
|
|
|
tool (dnf, apt, etc) is used by PackageKit using compiled and scripted
|
|
|
|
helpers. PackageKit isn't meant to replace these tools, instead providing
|
|
|
|
a common set of abstractions that can be used by standard GUI and text
|
|
|
|
mode package managers.
|
|
|
|
'';
|
|
|
|
homepage = http://www.packagekit.org/;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-06-16 19:19:40 +00:00
|
|
|
maintainers = with maintainers; [ nckx matthewbauer ];
|
2015-08-19 19:47:35 +00:00
|
|
|
};
|
|
|
|
}
|