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" ```
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
|
, hamlib, rtaudio, alsa-lib, libpulseaudio, libjack2, libusb1, soapysdr
|
|
, Accelerate, CoreAudio
|
|
} :
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "soapyaudio";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pothosware";
|
|
repo = "SoapyAudio";
|
|
rev = "soapy-audio-${version}";
|
|
sha256 = "0minlsc1lvmqm20vn5hb4im7pz8qwklfy7sbr2xr73xkrbqdahc0";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ hamlib rtaudio libjack2 libusb1 soapysdr ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ alsa-lib libpulseaudio ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ Accelerate CoreAudio ];
|
|
|
|
cmakeFlags = [
|
|
"-DSoapySDR_DIR=${soapysdr}/share/cmake/SoapySDR/"
|
|
"-DUSE_HAMLIB=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pothosware/SoapyAudio";
|
|
description = "SoapySDR plugin for amateur radio and audio devices";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ numinit ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|