summary refs log tree commit diff
path: root/pkgs/servers/misc/subsonic/default.nix
blob: 4c5ea3fe6c6c43e48fff64423eddef3f8037ef39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, stdenv, fetchurl, jre }:

stdenv.mkDerivation rec {
  pname = "subsonic";
  version = "6.1.6";

  src = fetchurl {
    url = "mirror://sourceforge/subsonic/subsonic-${version}-standalone.tar.gz";
    sha256 = "180qdk8mnc147az8v9rmc1kgf8b13mmq88l195gjdwiqpflqzdyz";
  };

  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 = ''
    runHook preUnpack
    mkdir ${pname}-${version}
    tar -C ${pname}-${version} -xzf $src
    runHook postUnpack
  '';
  installPhase = ''
    runHook preInstall
    mkdir $out
    cp -r ${pname}-${version}/* $out
    runHook postInstall
  '';

  meta = with lib; {
    homepage = "http://subsonic.org";
    description = "Personal media streamer";
    license = licenses.unfree;
    maintainers = with maintainers; [ telotortium ];
    platforms = platforms.unix;
  };

  phases = ["unpackPhase" "installPhase"];
}