Merge pull request #258811 from Enzime/qalculate-bundle

qalculate-gtk: generate bundle on macOS

authored by

Doron Behar and committed by
GitHub
d478d2c6 38b9119c

+3 -2
+3 -2
pkgs/applications/science/math/qalculate-gtk/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, intltool, autoreconfHook, pkg-config, libqalculate, gtk3, curl, wrapGAppsHook }: 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "qalculate-gtk"; ··· 13 14 hardeningDisable = [ "format" ]; 15 16 - nativeBuildInputs = [ intltool pkg-config autoreconfHook wrapGAppsHook ]; 17 buildInputs = [ libqalculate gtk3 curl ]; 18 enableParallelBuilding = true; 19
··· 1 + { lib, stdenv, fetchFromGitHub, intltool, autoreconfHook, pkg-config, libqalculate, gtk3, curl, wrapGAppsHook, desktopToDarwinBundle }: 2 3 stdenv.mkDerivation (finalAttrs: { 4 pname = "qalculate-gtk"; ··· 13 14 hardeningDisable = [ "format" ]; 15 16 + nativeBuildInputs = [ intltool pkg-config autoreconfHook wrapGAppsHook ] 17 + ++ lib.optionals stdenv.isDarwin [ desktopToDarwinBundle ]; 18 buildInputs = [ libqalculate gtk3 curl ]; 19 enableParallelBuilding = true; 20