2019-06-30 21:34:46 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
2019-06-30 22:33:07 -07:00
|
|
|
, fetchpatch
|
|
|
|
, substituteAll
|
2019-06-30 21:34:46 -07:00
|
|
|
, pkgconfig
|
|
|
|
, glib
|
|
|
|
, shadow
|
|
|
|
, gobject-introspection
|
|
|
|
, polkit
|
|
|
|
, systemd
|
|
|
|
, coreutils
|
|
|
|
, meson
|
|
|
|
, dbus
|
|
|
|
, ninja
|
|
|
|
, python3
|
2019-06-30 22:33:07 -07:00
|
|
|
, gettext
|
2019-06-30 21:34:46 -07:00
|
|
|
}:
|
2014-01-11 14:38:21 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-30 21:34:46 -07:00
|
|
|
pname = "accountsservice";
|
2019-04-26 14:20:49 -07:00
|
|
|
version = "0.6.55";
|
2016-09-01 02:08:36 -07:00
|
|
|
|
2019-06-30 22:33:07 -07:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2014-01-11 14:38:21 -08:00
|
|
|
src = fetchurl {
|
2019-06-30 21:34:46 -07:00
|
|
|
url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
|
2019-04-26 14:20:49 -07:00
|
|
|
sha256 = "16wwd633jak9ajyr1f1h047rmd09fhf3kzjz6g5xjsz0lwcj8azz";
|
2014-01-11 14:38:21 -08:00
|
|
|
};
|
|
|
|
|
2019-06-30 21:34:46 -07:00
|
|
|
nativeBuildInputs = [
|
2019-06-30 22:33:07 -07:00
|
|
|
dbus
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
2019-06-30 21:34:46 -07:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
python3
|
|
|
|
];
|
2017-06-18 02:46:35 -07:00
|
|
|
|
2019-06-30 21:34:46 -07:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
polkit
|
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
2019-06-30 22:33:07 -07:00
|
|
|
"-Dadmin_group=wheel"
|
2019-06-30 21:34:46 -07:00
|
|
|
"-Dlocalstatedir=/var"
|
2019-09-03 09:38:57 -07:00
|
|
|
"-Dsystemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
2019-06-30 21:34:46 -07:00
|
|
|
];
|
2014-01-11 14:38:21 -08:00
|
|
|
|
2019-06-30 22:33:07 -07:00
|
|
|
postPatch = ''
|
2018-10-09 15:28:07 -07:00
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
2016-06-01 03:59:56 -07:00
|
|
|
'';
|
2014-04-23 14:19:48 -07:00
|
|
|
|
2016-06-01 04:01:51 -07:00
|
|
|
patches = [
|
2019-06-30 22:33:07 -07:00
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit shadow coreutils;
|
|
|
|
})
|
2016-06-01 04:01:51 -07:00
|
|
|
./no-create-dirs.patch
|
2016-06-01 04:02:26 -07:00
|
|
|
./Disable-methods-that-change-files-in-etc.patch
|
2019-06-30 22:33:07 -07:00
|
|
|
# Systemd unit improvements. Notably using StateDirectory eliminating the
|
|
|
|
# need of an ad-hoc script.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.freedesktop.org/accountsservice/accountsservice/commit/152b845bbd3ca2a64516691493a160825f1a2046.patch";
|
|
|
|
sha256 = "114wrf5mwj5bgc5v1g05md4ridcnwdrwppr3bjz96sknwh5hk8s5";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.freedesktop.org/accountsservice/accountsservice/commit/0e712e935abd26499ff5995ab363e5bfd9ee7c4c.patch";
|
|
|
|
sha256 = "1y60a5fmgfqjzprwpizilrazqn3mggdlgc5sgcpsprsp62fv78rl";
|
|
|
|
})
|
2016-06-01 04:01:51 -07:00
|
|
|
];
|
|
|
|
|
2014-09-25 08:45:14 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-22 12:29:26 -07:00
|
|
|
description = "D-Bus interface for user account query and manipulation";
|
2018-04-26 16:55:27 -07:00
|
|
|
homepage = https://www.freedesktop.org/wiki/Software/AccountsService;
|
2014-09-25 08:45:14 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; linux;
|
2014-06-22 12:29:26 -07:00
|
|
|
};
|
2014-01-11 14:38:21 -08:00
|
|
|
}
|