3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/musikcube/default.nix

69 lines
1.3 KiB
Nix
Raw Normal View History

2020-04-05 13:40:32 +01:00
{ cmake
, pkg-config
, alsa-lib
2020-04-05 13:40:32 +01:00
, boost
, curl
, fetchFromGitHub
, fetchpatch
, ffmpeg
2020-04-05 13:40:32 +01:00
, lame
, libev
, libmicrohttpd
, ncurses
, pulseaudio
, lib, stdenv
2020-04-05 13:40:32 +01:00
, taglib
, systemdSupport ? stdenv.isLinux, systemd
}:
stdenv.mkDerivation rec {
pname = "musikcube";
2021-04-30 15:56:57 +01:00
version = "0.96.7";
2020-04-05 13:40:32 +01:00
src = fetchFromGitHub {
owner = "clangen";
repo = pname;
rev = version;
2021-04-30 15:56:57 +01:00
sha256 = "1y00vwn1h10cfflxrm5bk271ak9gilhjycgi44hlkkhmf5bdgn35";
2020-04-05 13:40:32 +01:00
};
patches = [
# Fix pending upstream inclusion for ncuurses-6.3 support:
# https://github.com/clangen/musikcube/pull/474
(fetchpatch {
name = "ncurses-6.3.patch";
url = "https://github.com/clangen/musikcube/commit/1240720e27232fdb199a4da93ca6705864442026.patch";
sha256 = "0bhjgwnj6d24wb1m9xz1vi1k9xk27arba1absjbcimggn54pinid";
})
];
2020-04-05 13:40:32 +01:00
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
alsa-lib
2020-04-05 13:40:32 +01:00
boost
curl
ffmpeg
2020-04-05 13:40:32 +01:00
lame
libev
libmicrohttpd
ncurses
pulseaudio
taglib
2021-01-15 13:21:58 +00:00
] ++ lib.optional systemdSupport systemd;
2020-04-05 13:40:32 +01:00
2020-05-27 02:16:18 +01:00
cmakeFlags = [
"-DDISABLE_STRIP=true"
];
meta = with lib; {
2020-04-05 13:40:32 +01: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;
};
}