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

25 lines
619 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
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"
'';
meta = with lib; {
2017-08-23 12:09:10 +00:00
description = "Personal media streamer";
homepage = "https://airsonic.github.io";
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 ];
};
}