summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/airdcpp-webclient/default.nix
blob: 2bc6cdca95205047f39d9f4e050237f707d940bb (plain)
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
{ stdenv, fetchurl, makeWrapper, which
}:
stdenv.mkDerivation rec {
  name = "airdcpp-webclient-${version}";
  version = "2.3.0";
  
  src = fetchurl {
    url = http://web-builds.airdcpp.net/stable/airdcpp_2.3.0_webui-2.3.0_64-bit_portable.tar.gz;
    sha256 = "0yvcl0nc70fghc7vfsgvbpryi5q97arld8adql4way4qa0mdnyv1";
  };

  phases = [ "unpackPhase" "installPhase" ];
  installPhase = ''
    mkdir -p $out/{share,bin}
    cp -r *  $out/share
    makeWrapper $out/share/airdcppd $out/bin/airdcppd --prefix PATH ${which}/bin
  '';
  nativeBuildInputs = [ makeWrapper ];

  meta = with stdenv.lib; {
    # to start it: airdcpp -p=<pid-file> -c=<config-store-path (must be writeable)> --configure
    description = "dcpp client (statically precompiled)";
    homepage = http://fixme;
    license = licenses.gpl3;
    maintainers = with maintainers; [ makefu ];
    platforms = with platforms; linux;
  };
}