mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
512e8afdb9
format (will squash)
60 lines
1.6 KiB
Nix
60 lines
1.6 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub
|
|
, nixosTests
|
|
, pkg-config, taglib, zlib
|
|
|
|
# Disable on-the-fly transcoding,
|
|
# removing the dependency on ffmpeg.
|
|
# The server will (as of 0.11.0) gracefully fall back
|
|
# to the original file, but if transcoding is configured
|
|
# that takes a while. So best to disable all transcoding
|
|
# in the configuration if you disable transcodingSupport.
|
|
, transcodingSupport ? true, ffmpeg
|
|
, mpv }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gonic";
|
|
version = "0.16.4";
|
|
src = fetchFromGitHub {
|
|
owner = "sentriz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-+8rKODoADU2k1quKvbijjs/6S/hpkegHhG7Si0LSE0k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ taglib zlib ];
|
|
vendorHash = "sha256-6JkaiaAgtXYAZqVSRZJFObZvhEsHsbPaO9pwmKqIhYI=";
|
|
|
|
# TODO(Profpatsch): write a test for transcoding support,
|
|
# since it is prone to break
|
|
postPatch = lib.optionalString transcodingSupport ''
|
|
substituteInPlace \
|
|
transcode/transcode.go \
|
|
--replace \
|
|
'`ffmpeg' \
|
|
'`${lib.getBin ffmpeg}/bin/ffmpeg'
|
|
'' + ''
|
|
substituteInPlace \
|
|
jukebox/jukebox.go \
|
|
--replace \
|
|
'"mpv"' \
|
|
'"${lib.getBin mpv}/bin/mpv"'
|
|
'' + ''
|
|
substituteInPlace server/ctrlsubsonic/testdata/test* \
|
|
--replace \
|
|
'"audio/flac"' \
|
|
'"audio/x-flac"'
|
|
'';
|
|
|
|
passthru = {
|
|
tests.gonic = nixosTests.gonic;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/sentriz/gonic";
|
|
description = "Music streaming server / subsonic server API implementation";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ autrimpo ];
|
|
mainProgram = "gonic";
|
|
};
|
|
}
|