1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/package-management/packagekit/default.nix
Tobias Geerinckx-Rice 9fb8020e4e Add version attribute where maintainers |= nckx
This will probably be mandatory soon, and is a step in the right
direction. Removes the deprecated meta.version, and move some meta
sections to the end of the file where I should have put them in
the first place.
2016-01-25 17:35:21 +01:00

73 lines
2.2 KiB
Nix

{ stdenv, fetchurl, intltool, glib, pkgconfig, polkit, python, sqlite }:
stdenv.mkDerivation rec {
name = "packagekit-${version}";
version = "1.0.8";
src = fetchurl {
sha256 = "1vaxn4kwdwx6p03n88k4pnbd2l6lb0cbxpcs88kjack1jml17c3l";
url = "http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${version}.tar.xz";
};
buildInputs = [ glib polkit python ];
propagatedBuildInputs = [ sqlite ];
nativeBuildInputs = [ intltool pkgconfig ];
configureFlags = [
"--disable-static"
"--disable-python3"
"--disable-networkmanager"
"--disable-connman"
"--disable-systemd"
"--disable-bash-completion"
"--disable-browser-plugin"
"--disable-gstreamer-plugin"
"--disable-gtk-module"
"--disable-command-not-found"
"--disable-cron"
"--disable-daemon-tests"
"--disable-alpm"
"--disable-aptcc"
"--enable-dummy"
"--disable-entropy"
"--disable-hif"
"--disable-pisi"
"--disable-poldek"
"--disable-portage"
"--disable-ports"
"--disable-katja"
"--disable-urpmi"
"--disable-yum"
"--disable-zypp"
];
enableParallelBuilding = true;
preInstall = ''
# Don't install anything to e.g. $out/var/cache:
for dir in src data; do
substituteInPlace $dir/Makefile \
--replace " install-data-hook" "" \
--replace " install-databaseDATA" ""
done
'';
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ nckx ];
};
}