add opentracker: free bittorrent tracker project. It aims for minimal resource usage and is intended to run at your wlan router

This commit is contained in:
Domen Kožar
2014-10-07 17:06:32 +02:00
parent c615793317
commit b0294578eb
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libowfat-0.29";
src = fetchurl {
url = "http://dl.fefe.de/${name}.tar.bz2";
sha256 = "09v4phf1d4y617fdqwn214jmkialf7xqcsyx3rzk7x5ysvpbvbab";
};
makeFlags = "prefix=$(out)";
meta = with stdenv.lib; {
homepage = http://www.fefe.de/libowfat/;
license = licenses.gpl2;
platforms = platforms.linux;
};
}