2016-09-01 15:53:19 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, intltool, makeWrapper, shadow
|
2014-04-23 23:19:48 +02:00
|
|
|
, libtool, gobjectIntrospection, polkit, systemd, coreutils }:
|
2014-01-11 23:38:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-25 17:45:14 +02:00
|
|
|
name = "accountsservice-${version}";
|
2016-10-05 14:49:22 +02:00
|
|
|
version = "0.6.43";
|
2016-09-01 11:08:36 +02:00
|
|
|
|
2014-01-11 23:38:21 +01:00
|
|
|
src = fetchurl {
|
2014-09-25 17:45:14 +02:00
|
|
|
url = "http://www.freedesktop.org/software/accountsservice/accountsservice-${version}.tar.xz";
|
2016-10-05 14:49:22 +02:00
|
|
|
sha256 = "1k6n9079001sgcwlkq0bz6mkn4m8y4dwf6hs1qm85swcld5ajfzd";
|
2014-01-11 23:38:21 +01:00
|
|
|
};
|
|
|
|
|
2014-04-23 23:19:48 +02:00
|
|
|
buildInputs = [ pkgconfig glib intltool libtool makeWrapper
|
2014-04-06 21:20:45 +02:00
|
|
|
gobjectIntrospection polkit systemd ];
|
2014-01-11 23:38:21 +01:00
|
|
|
|
2014-04-23 23:19:48 +02:00
|
|
|
configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
"--localstatedir=/var" ];
|
2016-06-01 12:59:56 +02:00
|
|
|
prePatch = ''
|
2016-09-01 15:53:19 +02: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 12:59:56 +02:00
|
|
|
'';
|
2014-04-23 23:19:48 +02:00
|
|
|
|
2016-06-01 13:01:51 +02:00
|
|
|
patches = [
|
|
|
|
./no-create-dirs.patch
|
2016-06-01 13:02:26 +02:00
|
|
|
./Disable-methods-that-change-files-in-etc.patch
|
2016-06-01 13:01:51 +02:00
|
|
|
];
|
|
|
|
|
2014-04-23 23:19:48 +02: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 17:45:14 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-22 21:29:26 +02:00
|
|
|
description = "D-Bus interface for user account query and manipulation";
|
2014-09-25 17:45:14 +02:00
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/AccountsService;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; linux;
|
2014-06-22 21:29:26 +02:00
|
|
|
};
|
2014-01-11 23:38:21 +01:00
|
|
|
}
|