mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, alsa-lib
|
|
, cmake
|
|
, doxygen
|
|
, libX11
|
|
, libXcursor
|
|
, libXext
|
|
, libXft
|
|
, libXinerama
|
|
, libXrandr
|
|
, pkg-config
|
|
, zlib
|
|
, Accelerate
|
|
, AGL
|
|
, Cocoa
|
|
, Foundation
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libopenshot-audio";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenShot";
|
|
repo = "libopenshot-audio";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-9iHeVMoyzTQae/PVYJqON0qOPo3SJlhrqbcp2u1Y8MA=";
|
|
};
|
|
|
|
patches = [
|
|
# https://forum.juce.com/t/juce-and-macos-11-arm/40285/24
|
|
./0001-undef-fpret-on-aarch64-darwin.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
] ++ (if stdenv.hostPlatform.isDarwin then [
|
|
Accelerate
|
|
AGL
|
|
Cocoa
|
|
Foundation
|
|
zlib
|
|
] else [
|
|
libX11
|
|
libXcursor
|
|
libXext
|
|
libXft
|
|
libXinerama
|
|
libXrandr
|
|
]);
|
|
|
|
strictDeps = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "http://openshot.org/";
|
|
description = "High-quality sound editing library";
|
|
mainProgram = "openshot-audio-demo";
|
|
longDescription = ''
|
|
OpenShot Audio Library (libopenshot-audio) is a program that allows the
|
|
high-quality editing and playback of audio, and is based on the amazing
|
|
JUCE library.
|
|
'';
|
|
license = with lib.licenses; [ gpl3Plus ];
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|