1 # Note: this is rakshasa's version of libtorrent, used mainly by rtorrent.
2 # *Do not* mistake it by libtorrent-rasterbar, used by Deluge, qbitttorent etc.
16 stdenv.mkDerivation rec {
17 pname = "rakshasa-libtorrent";
20 src = fetchFromGitHub {
24 hash = "sha256-ejDne7vaV+GYP6M0n3VAEva4UHuxRGwfc2rgxf7U/EM=";
39 configureFlags = [ "--enable-aligned=yes" ];
41 passthru.updateScript = gitUpdater { rev-prefix = "v"; };
43 enableParallelBuilding = true;
46 homepage = "https://github.com/rakshasa/libtorrent";
47 description = "BitTorrent library written in C++ for *nix, with focus on high performance and good code";
48 license = lib.licenses.gpl2Plus;
49 maintainers = with lib.maintainers; [
54 platforms = lib.platforms.unix;