2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-08-23 13:09:10 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "airsonic";
|
2020-05-11 05:37:49 +01:00
|
|
|
version = "10.6.2";
|
2017-08-23 13:09:10 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/airsonic/airsonic/releases/download/v${version}/airsonic.war";
|
2020-05-11 05:37:49 +01:00
|
|
|
sha256 = "0q3qnqymj3gaa6n79pvbyidn1ga99lpngp5wvhlw1aarg1m7vccl";
|
2017-08-23 13:09:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p "$out/webapps"
|
|
|
|
cp "$src" "$out/webapps/airsonic.war"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-08-23 13:09:10 +01:00
|
|
|
description = "Personal media streamer";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://airsonic.github.io";
|
2021-01-15 07:07:56 +00:00
|
|
|
license = lib.licenses.gpl3;
|
2017-08-23 13:09:10 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ disassembler ];
|
|
|
|
};
|
|
|
|
}
|