forked from mirrors/nixpkgs
Merge pull request #123993 from LeSuisse/sssd-1.16.5
sssd: 1.16.4 -> 1.16.5
This commit is contained in:
commit
16c0e7a3f9
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, fetchpatch, glibc, augeas, dnsutils, c-ares, curl,
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, fetchpatch, glibc, augeas, dnsutils, c-ares, curl,
|
||||||
cyrus_sasl, ding-libs, libnl, libunistring, nss, samba, nfs-utils, doxygen,
|
cyrus_sasl, ding-libs, libnl, libunistring, nss, samba, nfs-utils, doxygen,
|
||||||
python, python3, pam, popt, talloc, tdb, tevent, pkg-config, ldb, openldap,
|
python, python3, pam, popt, talloc, tdb, tevent, pkg-config, ldb, openldap,
|
||||||
pcre, libkrb5, cifs-utils, glib, keyutils, dbus, fakeroot, libxslt, libxml2,
|
pcre, libkrb5, cifs-utils, glib, keyutils, dbus, fakeroot, libxslt, libxml2,
|
||||||
|
@ -12,11 +12,13 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sssd";
|
pname = "sssd";
|
||||||
version = "1.16.4";
|
version = "1.16.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://fedorahosted.org/released/sssd/${pname}-${version}.tar.gz";
|
owner = "SSSD";
|
||||||
sha256 = "0ngr7cgimyjc6flqkm7psxagp1m4jlzpqkn28pliifbmdg6i5ckb";
|
repo = pname;
|
||||||
|
rev = "${pname}-${lib.replaceStrings ["."] ["_"] version}";
|
||||||
|
sha256 = "0zbs04lkjbp7y92anmafl7gzamcnq1f147p13hc4byyvjk9rg6f7";
|
||||||
};
|
};
|
||||||
patches = [
|
patches = [
|
||||||
# Fix build failure against samba 4.12.0rc1
|
# Fix build failure against samba 4.12.0rc1
|
||||||
|
@ -60,9 +62,10 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkg-config doxygen ];
|
||||||
buildInputs = [ augeas dnsutils c-ares curl cyrus_sasl ding-libs libnl libunistring nss
|
buildInputs = [ augeas dnsutils c-ares curl cyrus_sasl ding-libs libnl libunistring nss
|
||||||
samba nfs-utils doxygen python python3 popt
|
samba nfs-utils python python3 popt
|
||||||
talloc tdb tevent pkg-config ldb pam openldap pcre libkrb5
|
talloc tdb tevent ldb pam openldap pcre libkrb5
|
||||||
cifs-utils glib keyutils dbus fakeroot libxslt libxml2
|
cifs-utils glib keyutils dbus fakeroot libxslt libxml2
|
||||||
libuuid ldap systemd nspr check cmocka uid_wrapper
|
libuuid ldap systemd nspr check cmocka uid_wrapper
|
||||||
nss_wrapper ncurses Po4a http-parser jansson ];
|
nss_wrapper ncurses Po4a http-parser jansson ];
|
||||||
|
@ -95,8 +98,9 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "System Security Services Daemon";
|
description = "System Security Services Daemon";
|
||||||
homepage = "https://fedorahosted.org/sssd/";
|
homepage = "https://sssd.io/";
|
||||||
license = licenses.gpl3;
|
changelog = "https://sssd.io/release-notes/sssd-${version}.html";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.e-user ];
|
maintainers = [ maintainers.e-user ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue