summary refs log blame commit diff
path: root/pkgs/applications/networking/p2p/opentracker/default.nix
blob: 29dbd086a779233415d103037aa0db4dd1effb03 (plain) (tree)
1
2
3
4


                                     
                                  


















                                                                                                                            
 
{ stdenv, fetchgit, libowfat, zlib }:

stdenv.mkDerivation {
  name = "opentracker-2014-08-03";
  src = fetchgit {
    url = "https://github.com/masroore/opentracker.git";
    rev = "9a26b3d203755577879315ecc2b515d0e22793cb";
    sha256 = "74a7a6cbe80932fefb1698524809ce89be696f0fe3afd38fcb2b99fa59c9c891";
  };
  
  buildInputs = [ libowfat zlib ];
  
  installPhase = ''
    mkdir -p $out/bin
    cp opentracker $out/bin
  '';
  
  meta = with stdenv.lib; {
    homepage = https://github.com/masroore/opentracker;
    license = "beer-ware";
    platforms = platforms.linux;
    description = "Bittorrent tracker project aiminf for minimal resource usage and is intended to run at your wlan router";
  };
}