mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 16:45:15 +00:00
![Artturin](/assets/img/avatar_default.png)
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" ```
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ stdenv, lib, config, fetchFromGitHub, cmake, pkg-config
|
|
, alsaSupport ? stdenv.hostPlatform.isLinux, alsa-lib
|
|
, pulseSupport ? config.pulseaudio or stdenv.hostPlatform.isLinux, libpulseaudio
|
|
, jackSupport ? false, libjack2, soxr
|
|
, pcapSupport ? false, libpcap
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "scream";
|
|
version = "4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "duncanthrax";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-lP5mdNhZjkEVjgQUEsisPy+KXUqsE6xj6dFWcgD+VGM=";
|
|
};
|
|
|
|
buildInputs = lib.optional pulseSupport libpulseaudio
|
|
++ lib.optionals jackSupport [ libjack2 soxr ]
|
|
++ lib.optional alsaSupport alsa-lib
|
|
++ lib.optional pcapSupport libpcap;
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
cmakeFlags = [
|
|
"-DPULSEAUDIO_ENABLE=${if pulseSupport then "ON" else "OFF"}"
|
|
"-DALSA_ENABLE=${if alsaSupport then "ON" else "OFF"}"
|
|
"-DJACK_ENABLE=${if jackSupport then "ON" else "OFF"}"
|
|
"-DPCAP_ENABLE=${if pcapSupport then "ON" else "OFF"}"
|
|
];
|
|
|
|
cmakeDir = "../Receivers/unix";
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
set +o pipefail
|
|
|
|
# Programs exit with code 1 when testing help, so grep for a string
|
|
$out/bin/scream -h 2>&1 | grep -q Usage:
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Audio receiver for the Scream virtual network sound card";
|
|
homepage = "https://github.com/duncanthrax/scream";
|
|
license = licenses.mspl;
|
|
platforms = platforms.linux;
|
|
mainProgram = "scream";
|
|
maintainers = with maintainers; [ arcnmx ];
|
|
};
|
|
}
|