unshield: add darwin to platforms

Motivation: Required for Darwin build support for OpenMW. Unshield is a required package.

No changes were required to build on Darwin.
This commit is contained in:
Daniel Perry 2023-03-10 19:39:31 -05:00
parent 254ff60f27
commit 9618fea44d

View file

@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "Tool and library to extract CAB files from InstallShield installers";
homepage = "https://github.com/twogood/unshield";
license = licenses.mit;
platforms = platforms.linux;
platforms = platforms.linux ++ platforms.darwin;
};
}