72 lines
1.8 KiB
Nix
72 lines
1.8 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, fetchpatch
|
||
|
|
||
|
# Native build inputs
|
||
|
, cmake
|
||
|
, pkg-config
|
||
|
, makeWrapper
|
||
|
|
||
|
# Dependencies
|
||
|
, alsa-lib
|
||
|
, freetype
|
||
|
, curl
|
||
|
, libglvnd
|
||
|
, webkitgtk_4_0
|
||
|
, pcre
|
||
|
, darwin
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "juce";
|
||
|
version = "7.0.11";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "juce-framework";
|
||
|
repo = "juce";
|
||
|
rev = finalAttrs.version;
|
||
|
hash = "sha256-XFC+MYxUE3NatM2oYykiPJtiQLy33JD64VZFfZS2Tas=";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
(fetchpatch {
|
||
|
name = "juce-6.1.2-cmake_install.patch";
|
||
|
url = "https://gitlab.archlinux.org/archlinux/packaging/packages/juce/-/raw/4e6d34034b102af3cd762a983cff5dfc09e44e91/juce-6.1.2-cmake_install.patch";
|
||
|
hash = "sha256-fr2K/dH0Zam5QKS63zos7eq9QLwdr+bvQL5ZxScagVU=";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
makeWrapper
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
freetype # libfreetype.so
|
||
|
curl # libcurl.so
|
||
|
(lib.getLib stdenv.cc.cc) # libstdc++.so libgcc_s.so
|
||
|
pcre # libpcre2.pc
|
||
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
||
|
alsa-lib # libasound.so
|
||
|
libglvnd # libGL.so
|
||
|
webkitgtk_4_0 # webkit2gtk-4.0
|
||
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||
|
darwin.apple_sdk.frameworks.Cocoa
|
||
|
darwin.apple_sdk.frameworks.MetalKit
|
||
|
darwin.apple_sdk.frameworks.WebKit
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Cross-platform C++ application framework";
|
||
|
mainProgram = "juceaide";
|
||
|
longDescription = "JUCE is an open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, RTAS and AAX audio plug-ins";
|
||
|
homepage = "https://github.com/juce-framework/JUCE";
|
||
|
changelog = "https://github.com/juce-framework/JUCE/blob/${finalAttrs.version}/CHANGE_LIST.md";
|
||
|
license = with licenses; [ isc gpl3Plus ];
|
||
|
maintainers = with maintainers; [ kashw2 ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
})
|