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

25 lines
636 B
Nix
Raw Normal View History

2017-08-23 12:09:10 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "airsonic-${version}";
version = "10.3.1";
2017-08-23 12:09:10 +00:00
src = fetchurl {
url = "https://github.com/airsonic/airsonic/releases/download/v${version}/airsonic.war";
sha256 = "15y56h7zy94408605cchvf2fqg3aicylpzgd1g8fxyl42h216816";
2017-08-23 12:09:10 +00:00
};
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 ];
};
}