From e6ef6b680f118cf3140a7ab8544b7f2ce69133e1 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Thu, 16 Jun 2022 16:42:32 +0300 Subject: [PATCH] qosmic: enable on darwin --- pkgs/applications/graphics/qosmic/default.nix | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/graphics/qosmic/default.nix b/pkgs/applications/graphics/qosmic/default.nix index 96823441b6e1..9e2248f896de 100644 --- a/pkgs/applications/graphics/qosmic/default.nix +++ b/pkgs/applications/graphics/qosmic/default.nix @@ -1,4 +1,4 @@ -{ mkDerivation +{ stdenv , fetchFromGitHub , fetchpatch , qmake @@ -13,7 +13,7 @@ , lib }: -mkDerivation rec { +stdenv.mkDerivation rec { pname = "qosmic"; version = "1.6.0"; @@ -42,6 +42,13 @@ mkDerivation rec { }) ]; + postPatch = lib.optionalString stdenv.isDarwin '' + substituteInPlace qosmic.pro \ + --replace "/share" "/Applications/qosmic.app/Contents/Resources" \ + --replace "/qosmic/scripts" "/scripts" \ + --replace "install_icons install_desktop" "" + ''; + nativeBuildInputs = [ qmake wrapQtAppsHook pkg-config ]; buildInputs = [ @@ -55,16 +62,19 @@ mkDerivation rec { qmakeFlags = [ # Use pkg-config to correctly locate library paths - "-config" "link_pkgconfig" + "CONFIG+=link_pkgconfig" ]; + preInstall = lib.optionalString stdenv.isDarwin '' + mkdir -p $out/Applications + mv qosmic.app $out/Applications + ''; + meta = with lib; { description = "A cosmic recursive flame fractal editor"; homepage = "https://github.com/bitsed/qosmic"; license = licenses.gpl3Plus; maintainers = [ maintainers.raboof ]; - # It might be possible to make it work on OSX, - # but this has not been tested. - platforms = platforms.linux; + platforms = platforms.unix; }; }