2019-07-01 05:34:46 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkgconfig
|
|
|
|
, glib
|
|
|
|
, intltool
|
|
|
|
, makeWrapper
|
|
|
|
, shadow
|
|
|
|
, gobject-introspection
|
|
|
|
, polkit
|
|
|
|
, systemd
|
|
|
|
, coreutils
|
|
|
|
, meson
|
|
|
|
, dbus
|
|
|
|
, ninja
|
|
|
|
, python3
|
|
|
|
}:
|
2014-01-11 22:38:21 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-01 05:34:46 +01:00
|
|
|
pname = "accountsservice";
|
2019-04-26 22:20:49 +01:00
|
|
|
version = "0.6.55";
|
2016-09-01 10:08:36 +01:00
|
|
|
|
2014-01-11 22:38:21 +00:00
|
|
|
src = fetchurl {
|
2019-07-01 05:34:46 +01:00
|
|
|
url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
|
2019-04-26 22:20:49 +01:00
|
|
|
sha256 = "16wwd633jak9ajyr1f1h047rmd09fhf3kzjz6g5xjsz0lwcj8azz";
|
2014-01-11 22:38:21 +00:00
|
|
|
};
|
|
|
|
|
2019-07-01 05:34:46 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
python3
|
|
|
|
];
|
2017-06-18 10:46:35 +01:00
|
|
|
|
2019-07-01 05:34:46 +01:00
|
|
|
buildInputs = [
|
|
|
|
dbus
|
|
|
|
glib
|
|
|
|
gobject-introspection
|
|
|
|
intltool
|
|
|
|
polkit
|
|
|
|
systemd
|
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dsystemdsystemunitdir=etc/systemd/system"
|
|
|
|
"-Dlocalstatedir=/var"
|
|
|
|
];
|
2014-01-11 22:38:21 +00:00
|
|
|
|
2016-06-01 11:59:56 +01:00
|
|
|
prePatch = ''
|
2018-10-09 23:28:07 +01:00
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
|
2016-09-01 14:53:19 +01:00
|
|
|
substituteInPlace src/daemon.c --replace '"/usr/sbin/useradd"' '"${shadow}/bin/useradd"' \
|
|
|
|
--replace '"/usr/sbin/userdel"' '"${shadow}/bin/userdel"'
|
|
|
|
substituteInPlace src/user.c --replace '"/usr/sbin/usermod"' '"${shadow}/bin/usermod"' \
|
|
|
|
--replace '"/usr/bin/chage"' '"${shadow}/bin/chage"' \
|
|
|
|
--replace '"/usr/bin/passwd"' '"${shadow}/bin/passwd"' \
|
|
|
|
--replace '"/bin/cat"' '"${coreutils}/bin/cat"'
|
2016-06-01 11:59:56 +01:00
|
|
|
'';
|
2014-04-23 22:19:48 +01:00
|
|
|
|
2016-06-01 12:01:51 +01:00
|
|
|
patches = [
|
|
|
|
./no-create-dirs.patch
|
2016-06-01 12:02:26 +01:00
|
|
|
./Disable-methods-that-change-files-in-etc.patch
|
2016-06-01 12:01:51 +01:00
|
|
|
];
|
|
|
|
|
2014-04-23 22:19:48 +01:00
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/libexec/accounts-daemon" \
|
|
|
|
--run "${coreutils}/bin/mkdir -p /var/lib/AccountsService/users" \
|
|
|
|
--run "${coreutils}/bin/mkdir -p /var/lib/AccountsService/icons"
|
|
|
|
'';
|
|
|
|
|
2014-09-25 16:45:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-22 20:29:26 +01:00
|
|
|
description = "D-Bus interface for user account query and manipulation";
|
2018-04-27 00:55:27 +01:00
|
|
|
homepage = https://www.freedesktop.org/wiki/Software/AccountsService;
|
2014-09-25 16:45:14 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2014-06-22 20:29:26 +01:00
|
|
|
};
|
2014-01-11 22:38:21 +00:00
|
|
|
}
|