This is basically copied from nixpkgs-unstable's navidrome derivation but updated to current version. I'd prefer building this from source, but currently only manage to build the backend-only version without the web UI, as building both requires somehow building a node.js package inside a Go package.master
parent
1c6b646175
commit
56c0b03832
@ -0,0 +1,41 @@ |
||||
{ lib, stdenv, fetchurl, ffmpeg, ffmpegSupport ? true, makeWrapper }: |
||||
|
||||
with lib; |
||||
|
||||
stdenv.mkDerivation rec { |
||||
pname = "navidrome"; |
||||
version = "0.45.1"; |
||||
|
||||
src = fetchurl { |
||||
url = "https://github.com/deluan/navidrome/releases/download/v${version}/navidrome_${version}_Linux_x86_64.tar.gz"; |
||||
sha256 = "sha256-TZcXq51sKoeLPmcRpv4VILDmS6dsS7lxlJzTDH0tEWM="; |
||||
}; |
||||
|
||||
nativeBuildInputs = [ makeWrapper ]; |
||||
|
||||
unpackPhase = '' |
||||
tar xvf $src navidrome |
||||
''; |
||||
|
||||
installPhase = '' |
||||
runHook preInstall |
||||
|
||||
mkdir -p $out/bin |
||||
cp navidrome $out/bin |
||||
|
||||
runHook postInstall |
||||
''; |
||||
|
||||
postFixup = '' |
||||
wrapProgram $out/bin/navidrome \ |
||||
--prefix PATH : ${makeBinPath (optional ffmpegSupport ffmpeg)} |
||||
''; |
||||
|
||||
meta = { |
||||
description = "Navidrome Music Server and Streamer compatible with Subsonic/Airsonic"; |
||||
homepage = "https://www.navidrome.org/"; |
||||
license = licenses.gpl3Only; |
||||
platforms = [ "x86_64-linux" ]; |
||||
maintainers = with maintainers; [ aciceri ]; |
||||
}; |
||||
} |
Loading…
Reference in new issue