2015-06-15 06:50:34 +00:00
|
|
|
{ stdenv, fetchurl, jre }:
|
|
|
|
|
2018-02-28 00:53:05 +00:00
|
|
|
let version = "6.1.3"; in
|
2015-06-15 06:50:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "subsonic-${version}";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/subsonic/subsonic-${version}-standalone.tar.gz";
|
2018-02-28 00:53:05 +00:00
|
|
|
sha256 = "1v21gfymaqcx6n6d88hvha60q9hgj5z1wsac5gcwq7cjah1893jx";
|
2015-06-15 06:50:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit jre;
|
|
|
|
|
|
|
|
# Create temporary directory to extract tarball into to satisfy Nix's need
|
|
|
|
# for a directory to be created in the unpack phase.
|
|
|
|
unpackPhase = ''
|
|
|
|
mkdir ${name}
|
|
|
|
tar -C ${name} -xzf $src
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -r ${name}/* $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://subsonic.org;
|
|
|
|
description = "Personal media streamer";
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2015-07-08 16:19:20 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ telotortium ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2015-06-15 06:50:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
phases = ["unpackPhase" "installPhase"];
|
|
|
|
}
|