mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +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" ```
109 lines
2.2 KiB
Nix
109 lines
2.2 KiB
Nix
{
|
|
asio,
|
|
cmake,
|
|
curl,
|
|
fetchFromGitHub,
|
|
ffmpeg-headless,
|
|
gnutls,
|
|
lame,
|
|
lib,
|
|
libev,
|
|
game-music-emu,
|
|
libmicrohttpd,
|
|
libopenmpt,
|
|
mpg123,
|
|
ncurses,
|
|
pkg-config,
|
|
portaudio,
|
|
stdenv,
|
|
taglib,
|
|
# Linux Dependencies
|
|
alsa-lib,
|
|
pipewireSupport ? !stdenv.hostPlatform.isDarwin,
|
|
pipewire,
|
|
pulseaudio,
|
|
sndioSupport ? true,
|
|
sndio,
|
|
systemd,
|
|
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
|
# Darwin Dependencies
|
|
darwin,
|
|
coreaudioSupport ? stdenv.hostPlatform.isDarwin,
|
|
}:
|
|
|
|
let
|
|
ffmpeg = ffmpeg-headless;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "musikcube";
|
|
version = "3.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clangen";
|
|
repo = "musikcube";
|
|
rev = finalAttrs.version;
|
|
hash = "sha512-ibpSrzbn2yGNgWnjAh4sG9ZRFImxjE2sq6tu9k0w1QAAr/OWSTwtaIuK71ClT6yt4HKyRk1KSaXa+/IzOHI6Kg==";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
asio
|
|
curl
|
|
ffmpeg
|
|
gnutls
|
|
lame
|
|
libev
|
|
game-music-emu
|
|
libmicrohttpd
|
|
libopenmpt
|
|
mpg123
|
|
ncurses
|
|
portaudio
|
|
taglib
|
|
]
|
|
++ lib.optionals systemdSupport [ systemd ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
pulseaudio
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin (
|
|
with darwin.apple_sdk.frameworks;
|
|
[
|
|
Cocoa
|
|
SystemConfiguration
|
|
]
|
|
)
|
|
++ lib.optionals coreaudioSupport (with darwin.apple_sdk.frameworks; [ CoreAudio ])
|
|
++ lib.optionals sndioSupport [ sndio ]
|
|
++ lib.optionals pipewireSupport [ pipewire ];
|
|
|
|
cmakeFlags = [ "-DDISABLE_STRIP=true" ];
|
|
|
|
postFixup = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
install_name_tool -add_rpath $out/share/musikcube $out/share/musikcube/musikcube
|
|
install_name_tool -add_rpath $out/share/musikcube $out/share/musikcube/musikcubed
|
|
'';
|
|
|
|
meta = {
|
|
description = "Terminal-based music player, library, and streaming audio server";
|
|
homepage = "https://musikcube.com/";
|
|
maintainers = with lib.maintainers; [
|
|
aanderse
|
|
afh
|
|
];
|
|
mainProgram = "musikcube";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|