7d631f8978
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/accountsservice/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.6.49 with grep in /nix/store/5n1xmzvhis54f8vahhwxv4pn2k82sqmc-accountsservice-0.6.49 - directory tree listing: https://gist.github.com/d4f52cc42677c263ff034c14fb7741e3 - du listing: https://gist.github.com/0a90eaba29c57c4f54c36a659416df96
47 lines
1.8 KiB
Nix
47 lines
1.8 KiB
Nix
{ stdenv, fetchurl, pkgconfig, glib, intltool, makeWrapper, shadow
|
|
, libtool, gobjectIntrospection, polkit, systemd, coreutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "accountsservice-${version}";
|
|
version = "0.6.49";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/accountsservice/accountsservice-${version}.tar.xz";
|
|
sha256 = "032ndvs18gla49dvc9vg35cwczg0wpv2wscp1m3yjfdqdpams7i5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
|
|
|
buildInputs = [ glib intltool libtool gobjectIntrospection polkit systemd ];
|
|
|
|
configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
"--localstatedir=/var" ];
|
|
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"'
|
|
'';
|
|
|
|
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; {
|
|
description = "D-Bus interface for user account query and manipulation";
|
|
homepage = https://www.freedesktop.org/wiki/Software/AccountsService;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|