Merge pull request #202477 from holymonson/samba
samba: add notes for darwin
This commit is contained in:
commit
423a5ab698
1 changed files with 4 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
||||||
, bash
|
, bash
|
||||||
, python3Packages
|
, python3Packages
|
||||||
, nixosTests
|
, nixosTests
|
||||||
|
, libiconv
|
||||||
|
|
||||||
, enableLDAP ? false, openldap
|
, enableLDAP ? false, openldap
|
||||||
, enablePrinting ? false, cups
|
, enablePrinting ? false, cups
|
||||||
|
@ -103,6 +104,7 @@ stdenv.mkDerivation rec {
|
||||||
tdb
|
tdb
|
||||||
libxcrypt
|
libxcrypt
|
||||||
] ++ optionals stdenv.isLinux [ liburing systemd ]
|
] ++ optionals stdenv.isLinux [ liburing systemd ]
|
||||||
|
++ optionals stdenv.isDarwin [ libiconv ]
|
||||||
++ optionals enableLDAP [ openldap.dev python3Packages.markdown ]
|
++ optionals enableLDAP [ openldap.dev python3Packages.markdown ]
|
||||||
++ optional (enablePrinting && stdenv.isLinux) cups
|
++ optional (enablePrinting && stdenv.isLinux) cups
|
||||||
++ optional enableMDNS avahi
|
++ optional enableMDNS avahi
|
||||||
|
@ -208,6 +210,8 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
# N.B. enableGlusterFS does not build
|
# N.B. enableGlusterFS does not build
|
||||||
|
# TODO: darwin support needs newer SDK for "_futimens" and "_utimensat"
|
||||||
|
# see https://github.com/NixOS/nixpkgs/issues/101229
|
||||||
broken = stdenv.isDarwin || enableGlusterFS;
|
broken = stdenv.isDarwin || enableGlusterFS;
|
||||||
maintainers = with maintainers; [ aneeshusa ];
|
maintainers = with maintainers; [ aneeshusa ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue