nixpkgs/pkgs/servers/gonic/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-24 04:20:00 +00:00
{ lib, stdenv, buildGoModule, fetchFromGitHub
2022-12-21 00:08:48 +00:00
, nixosTests
2022-12-04 12:43:38 +00:00
, 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.
2022-12-04 12:43:38 +00:00
, transcodingSupport ? true, ffmpeg
, mpv }:
2021-02-04 00:09:00 +00:00
buildGoModule rec {
pname = "gonic";
2024-03-19 21:09:45 +00:00
version = "0.16.4";
src = fetchFromGitHub {
owner = "sentriz";
2021-02-04 00:09:00 +00:00
repo = pname;
2021-07-24 04:20:00 +00:00
rev = "v${version}";
2024-03-19 21:09:45 +00:00
sha256 = "sha256-+8rKODoADU2k1quKvbijjs/6S/hpkegHhG7Si0LSE0k=";
};
nativeBuildInputs = [ pkg-config ];
2022-12-04 12:43:38 +00:00
buildInputs = [ taglib zlib ];
2024-03-19 21:09:45 +00:00
vendorHash = "sha256-6JkaiaAgtXYAZqVSRZJFObZvhEsHsbPaO9pwmKqIhYI=";
# TODO(Profpatsch): write a test for transcoding support,
# since it is prone to break
postPatch = lib.optionalString transcodingSupport ''
substituteInPlace \
2022-12-04 12:43:38 +00:00
transcode/transcode.go \
--replace \
2022-12-04 12:43:38 +00:00
'`ffmpeg' \
'`${lib.getBin ffmpeg}/bin/ffmpeg'
'' + ''
substituteInPlace \
jukebox/jukebox.go \
--replace \
'"mpv"' \
'"${lib.getBin mpv}/bin/mpv"'
2024-03-19 21:09:45 +00:00
'' + ''
substituteInPlace server/ctrlsubsonic/testdata/test* \
--replace \
'"audio/flac"' \
'"audio/x-flac"'
'';
2022-12-21 00:08:48 +00:00
passthru = {
tests.gonic = nixosTests.gonic;
};
meta = {
homepage = "https://github.com/sentriz/gonic";
description = "Music streaming server / subsonic server API implementation";
2021-02-04 00:09:00 +00:00
license = lib.licenses.gpl3Plus;
2024-03-28 13:27:51 +00:00
maintainers = with lib.maintainers; [ autrimpo ];
2023-11-27 01:17:53 +00:00
mainProgram = "gonic";
};
}