nixpkgs/pkgs/applications/audio/musikcube/default.nix

58 lines
995 B
Nix
Raw Normal View History

2020-04-05 12:40:32 +00:00
{ cmake
, pkg-config
, alsaLib
, boost
, curl
, fetchFromGitHub
, ffmpeg_3
2020-04-05 12:40:32 +00:00
, lame
, libev
, libmicrohttpd
, ncurses
, pulseaudio
, lib, stdenv
2020-04-05 12:40:32 +00:00
, taglib
, systemdSupport ? stdenv.isLinux, systemd
}:
stdenv.mkDerivation rec {
pname = "musikcube";
2021-02-03 17:34:21 +00:00
version = "0.96.5";
2020-04-05 12:40:32 +00:00
src = fetchFromGitHub {
owner = "clangen";
repo = pname;
rev = version;
2021-02-03 17:34:21 +00:00
sha256 = "sha256-GxMQPP8i/NWvduf10f+xVyuG666pChj9RsiF4jfygyY=";
2020-04-05 12:40:32 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
alsaLib
boost
curl
ffmpeg_3
2020-04-05 12:40:32 +00:00
lame
libev
libmicrohttpd
ncurses
pulseaudio
taglib
2021-01-15 13:21:58 +00:00
] ++ lib.optional systemdSupport systemd;
2020-04-05 12:40:32 +00:00
2020-05-27 01:16:18 +00:00
cmakeFlags = [
"-DDISABLE_STRIP=true"
];
meta = with lib; {
2020-04-05 12:40:32 +00:00
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;
};
}