Commit 9136a494 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

libpthread-stubs: set platforms back to unix

I think this was changed from platforms.unix due to a misunderstanding
of what the README says.  The list in the README is of platforms where
the .pc file installed by this package will have one behaviour.  On
other Unix platforms, it will have a different behaviour, but it's
still supported.  Restoring platforms.unix fixes building a number of
packages for FreeBSD.

Fixes: 4cc23fda ("libpthread-stubs: refactored, moved to pkgs/by-name and renamed from xorg.libpthreadstubs")
parent 9b3cfad8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -37,7 +37,6 @@ stdenv.mkDerivation (finalAttrs: {
    license = lib.licenses.x11;
    maintainers = [ ];
    pkgConfigModules = [ "pthread-stubs" ];
    # on these platforms according to the readme
    platforms = with lib.platforms; linux ++ cygwin ++ darwin ++ [ "x86_64-solaris" ];
    platforms = lib.platforms.unix;
  };
})