Merge pull request #122139 from vs49688/navidrome

navidrome: 0.40.0 -> 0.42.1
This commit is contained in:
Sandro 2021-05-08 22:55:39 +02:00 committed by GitHub
commit fefb074100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,11 @@ with lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "navidrome"; pname = "navidrome";
version = "0.40.0"; version = "0.42.1";
src = fetchurl { src = fetchurl {
url = "https://github.com/deluan/navidrome/releases/download/v${version}/navidrome_${version}_Linux_x86_64.tar.gz"; url = "https://github.com/deluan/navidrome/releases/download/v${version}/navidrome_${version}_Linux_x86_64.tar.gz";
sha256 = "sha256-sBITCHyji55OnopNlDCNypSf/j8LKtarSGPYz5fQZys="; sha256 = "1bndqs689rc7pf1l08rlph8h3f86kr1c7i96szs4wkycfy9w8vsv";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
@ -18,8 +18,12 @@ stdenv.mkDerivation rec {
''; '';
installPhase = '' installPhase = ''
runHook preInstall
mkdir -p $out/bin mkdir -p $out/bin
cp navidrome $out/bin cp navidrome $out/bin
runHook postInstall
''; '';
postFixup = '' postFixup = ''
@ -30,7 +34,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Navidrome Music Server and Streamer compatible with Subsonic/Airsonic"; description = "Navidrome Music Server and Streamer compatible with Subsonic/Airsonic";
homepage = "https://www.navidrome.org/"; homepage = "https://www.navidrome.org/";
license = licenses.gpl3; license = licenses.gpl3Only;
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ aciceri ]; maintainers = with maintainers; [ aciceri ];
}; };