42815b4a0c
Many packages have some kind of flag indicating whether or not to build with systemd support. Most of these default to `stdenv.isLinux`, but systemd does not build on (and is marked `broken` for) `isStatic`. Only a few packages have the needed `&& !isStatic` in the default value for their parameter. This commit moves the logic for the default value of these flags into `systemd.meta.{platforms,badPlatforms}` and evaluates those conditions using `lib.meta.availableOn`. This provides three benefits: 1. The default values are set correctly (i.e. including `&& isStatic`) 2. The default values are set consistently 3. The way is paved for any future non-Linux systemd platforms (FreeBSD is reported to have experimental systemd support)
83 lines
1.5 KiB
Nix
83 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, pkg-config
|
|
, boost
|
|
, curl
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, ffmpeg
|
|
, gnutls
|
|
, lame
|
|
, libev
|
|
, libmicrohttpd
|
|
, libopenmpt
|
|
, mpg123
|
|
, ncurses
|
|
, taglib
|
|
# Linux Dependencies
|
|
, alsa-lib
|
|
, pulseaudio
|
|
, systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd
|
|
, systemd
|
|
# Darwin Dependencies
|
|
, Cocoa
|
|
, SystemConfiguration
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "musikcube";
|
|
version = "0.98.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clangen";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-pnAdlCCqWzR0W8dF9CE48K8yHMVIx3egZlXvibxU18A=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
curl
|
|
ffmpeg
|
|
gnutls
|
|
lame
|
|
libev
|
|
libmicrohttpd
|
|
libopenmpt
|
|
mpg123
|
|
ncurses
|
|
taglib
|
|
] ++ lib.optionals systemdSupport [
|
|
systemd
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
alsa-lib pulseaudio
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
Cocoa SystemConfiguration
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DDISABLE_STRIP=true"
|
|
];
|
|
|
|
postFixup = lib.optionals stdenv.isDarwin ''
|
|
install_name_tool -add_rpath $out/share/${pname} $out/share/${pname}/${pname}
|
|
install_name_tool -add_rpath $out/share/${pname} $out/share/${pname}/${pname}d
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A fully functional terminal-based music player, library, and streaming audio server";
|
|
homepage = "https://musikcube.com/";
|
|
maintainers = with maintainers; [ aanderse srapenne ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|