nixpkgs/pkgs/development/libraries/accountsservice/default.nix

47 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, intltool, makeWrapper, shadow
, libtool, gobjectIntrospection, polkit, systemd, coreutils }:
2014-01-11 22:38:21 +00:00
stdenv.mkDerivation rec {
name = "accountsservice-${version}";
2017-06-18 10:46:35 +01:00
version = "0.6.45";
2016-09-01 10:08:36 +01:00
2014-01-11 22:38:21 +00:00
src = fetchurl {
url = "http://www.freedesktop.org/software/accountsservice/accountsservice-${version}.tar.xz";
2017-06-18 10:46:35 +01:00
sha256 = "09pg25ir7kjigvp2cxd9fkfw8c8ql8vrswfvymg9zmbmma9w43zv";
2014-01-11 22:38:21 +00:00
};
2017-06-18 10:46:35 +01:00
nativeBuildInputs = [ pkgconfig makeWrapper ];
buildInputs = [ glib intltool libtool gobjectIntrospection polkit systemd ];
2014-01-11 22:38:21 +00:00
configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
"--localstatedir=/var" ];
2016-06-01 11:59:56 +01:00
prePatch = ''
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
'';
patches = [
./no-create-dirs.patch
./Disable-methods-that-change-files-in-etc.patch
];
preFixup = ''
wrapProgram "$out/libexec/accounts-daemon" \
--run "${coreutils}/bin/mkdir -p /var/lib/AccountsService/users" \
--run "${coreutils}/bin/mkdir -p /var/lib/AccountsService/icons"
'';
meta = with stdenv.lib; {
2014-06-22 20:29:26 +01:00
description = "D-Bus interface for user account query and manipulation";
homepage = http://www.freedesktop.org/wiki/Software/AccountsService;
license = licenses.gpl3;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
2014-06-22 20:29:26 +01:00
};
2014-01-11 22:38:21 +00:00
}