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