mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
5f994b9330
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/airsonic/versions
25 lines
626 B
Nix
25 lines
626 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "airsonic";
|
|
version = "10.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/airsonic/airsonic/releases/download/v${version}/airsonic.war";
|
|
sha256 = "18vm59x8pcgsyf3kl8ndvdszwf62df9vsqzv5jgbzayb3s0yjghx";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p "$out/webapps"
|
|
cp "$src" "$out/webapps/airsonic.war"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Personal media streamer";
|
|
homepage = https://airsonic.github.io;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ disassembler ];
|
|
};
|
|
}
|