58 lines
1005 B
Nix
58 lines
1005 B
Nix
{ cmake
|
|
, pkg-config
|
|
, alsaLib
|
|
, boost
|
|
, curl
|
|
, fetchFromGitHub
|
|
, ffmpeg_3
|
|
, lame
|
|
, libev
|
|
, libmicrohttpd
|
|
, ncurses
|
|
, pulseaudio
|
|
, stdenv
|
|
, taglib
|
|
, systemdSupport ? stdenv.isLinux, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "musikcube";
|
|
version = "0.95.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clangen";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "16ksr4yjkg88bpij1i49dzi07ffhqq8b36r090y4fq5czrc420rc";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
alsaLib
|
|
boost
|
|
curl
|
|
ffmpeg_3
|
|
lame
|
|
libev
|
|
libmicrohttpd
|
|
ncurses
|
|
pulseaudio
|
|
taglib
|
|
] ++ stdenv.lib.optional systemdSupport systemd;
|
|
|
|
cmakeFlags = [
|
|
"-DDISABLE_STRIP=true"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A fully functional terminal-based music player, library, and streaming audio server";
|
|
homepage = "https://musikcube.com/";
|
|
maintainers = [ maintainers.aanderse ];
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|