2014-04-24 01:19:48 +04:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, intltool, makeWrapper
|
|
|
|
, libtool, gobjectIntrospection, polkit, systemd, coreutils }:
|
2014-01-12 02:38:21 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-25 19:45:14 +04:00
|
|
|
name = "accountsservice-${version}";
|
2015-01-26 19:50:50 +03:00
|
|
|
version = "0.6.40";
|
2014-01-12 02:38:21 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-25 19:45:14 +04:00
|
|
|
url = "http://www.freedesktop.org/software/accountsservice/accountsservice-${version}.tar.xz";
|
2015-01-26 19:50:50 +03:00
|
|
|
sha256 = "0ayb3y3l25dmwxlh9g071h02mphjfbkvi2k5f635bayb01k7akzh";
|
2014-01-12 02:38:21 +04:00
|
|
|
};
|
|
|
|
|
2014-04-24 01:19:48 +04:00
|
|
|
buildInputs = [ pkgconfig glib intltool libtool makeWrapper
|
2014-04-06 23:20:45 +04:00
|
|
|
gobjectIntrospection polkit systemd ];
|
2014-01-12 02:38:21 +04:00
|
|
|
|
2014-04-24 01:19:48 +04:00
|
|
|
configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
|
|
"--localstatedir=/var" ];
|
|
|
|
|
|
|
|
patches = [ ./no-create-dirs.patch ];
|
|
|
|
patchFlags = "-p0";
|
|
|
|
|
|
|
|
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 19:45:14 +04:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-22 23:29:26 +04:00
|
|
|
description = "D-Bus interface for user account query and manipulation";
|
2014-09-25 19:45:14 +04:00
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/AccountsService;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-06-22 23:29:26 +04:00
|
|
|
};
|
2014-01-12 02:38:21 +04:00
|
|
|
}
|