nixpkgs-suyu/pkgs/servers/misc/airsonic/default.nix

29 lines
701 B
Nix
Raw Normal View History

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