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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
762 B
Nix
Raw Normal View History

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