Merge pull request #177892 from sikmir/qosmic

flam3, qosmic: enable on darwin
This commit is contained in:
Anderson Torres 2022-06-16 13:18:13 -03:00 committed by GitHub
commit b9397b21ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 7 deletions

View file

@ -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;
};
}

View file

@ -37,6 +37,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}