libtorrent: nixfmt

This commit is contained in:
Jared Baur
2024-11-16 09:58:55 -08:00
parent 29626b8fb4
commit 2b669d9ae5

View File

@@ -1,16 +1,17 @@
# Note: this is rakshasa's version of libtorrent, used mainly by rtorrent. # Note: this is rakshasa's version of libtorrent, used mainly by rtorrent.
# *Do not* mistake it by libtorrent-rasterbar, used by Deluge, qbitttorent etc. # *Do not* mistake it by libtorrent-rasterbar, used by Deluge, qbitttorent etc.
{ lib {
, stdenv lib,
, fetchFromGitHub stdenv,
, autoconf-archive fetchFromGitHub,
, autoreconfHook autoconf-archive,
, cppunit autoreconfHook,
, libsigcxx cppunit,
, openssl libsigcxx,
, pkg-config openssl,
, zlib pkg-config,
, gitUpdater zlib,
gitUpdater,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@@ -45,7 +46,11 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/rakshasa/libtorrent"; homepage = "https://github.com/rakshasa/libtorrent";
description = "BitTorrent library written in C++ for *nix, with focus on high performance and good code"; description = "BitTorrent library written in C++ for *nix, with focus on high performance and good code";
license = lib.licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ebzzry codyopel thiagokokada ]; maintainers = with lib.maintainers; [
ebzzry
codyopel
thiagokokada
];
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
}; };
} }