Unverified Commit f81c7d6b authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

pcscliteWithPolkit: mark as broken on darwin (#427194)

parents 5f871b0e 4b4abe2f
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -23,9 +23,6 @@
  polkitSupport ? false,
}:

assert polkitSupport -> dbusSupport;
assert systemdSupport -> dbusSupport;

stdenv.mkDerivation (finalAttrs: {
  inherit pname;
  version = "2.3.0";
@@ -132,5 +129,6 @@ stdenv.mkDerivation (finalAttrs: {
    maintainers = [ lib.maintainers.anthonyroussel ];
    pkgConfigModules = [ "libpcsclite" ];
    platforms = lib.platforms.unix;
    broken = !(polkitSupport -> dbusSupport) || !(systemdSupport -> dbusSupport);
  };
})