summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/opentracker/default.nix
blob: ac0aeba97215f3620437b3ee73301fa274372a34 (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, fetchgit, libowfat, zlib, nixosTests }:

stdenv.mkDerivation {
  pname = "opentracker";
  version = "unstable-2018-05-26";

  src = fetchgit {
    url = "https://erdgeist.org/gitweb/opentracker";
    rev = "6411f1567f64248b0d145493c2e61004d2822623";
    sha256 = "110nfb6n4clykwdzpk54iccsfjawq0krjfqhg114i1z0ri5dyl8j";
  };

  buildInputs = [ libowfat zlib ];

  makeFlags = [
    "LIBOWFAT_HEADERS=${libowfat}/include/libowfat"
    "LIBOWFAT_LIBRARY=${libowfat}/lib"
  ];

  installPhase = ''
    runHook preInstall
    install -D opentracker $out/bin/opentracker
    install -D opentracker.conf.sample $out/share/doc/opentracker.conf.sample
    runHook postInstall
  '';

  passthru.tests = {
    bittorrent-integration = nixosTests.bittorrent;
  };

  meta = with lib; {
    homepage = "https://erdgeist.org/arts/software/opentracker/";
    license = licenses.beerware;
    platforms = platforms.linux;
    description = "Bittorrent tracker project which aims for minimal resource usage and is intended to run at your wlan router";
    maintainers = with maintainers; [ makefu ];
  };
}