rtorrent: Format using nixfmt-rfc-style

This commit is contained in:
Zhong Jianxin 2024-11-03 19:29:38 +08:00
parent 870ac8293a
commit 799ae392da

View File

@ -1,21 +1,22 @@
{ lib
, stdenv
, autoconf-archive
, autoreconfHook
, cppunit
, curl
, fetchFromGitHub
, installShellFiles
, libsigcxx
, libtool
, libtorrent
, ncurses
, openssl
, pkg-config
, xmlrpc_c
, zlib
, nixosTests
, gitUpdater
{
lib,
stdenv,
autoconf-archive,
autoreconfHook,
cppunit,
curl,
fetchFromGitHub,
installShellFiles,
libsigcxx,
libtool,
libtorrent,
ncurses,
openssl,
pkg-config,
xmlrpc_c,
zlib,
nixosTests,
gitUpdater,
}:
stdenv.mkDerivation rec {
@ -29,7 +30,10 @@ stdenv.mkDerivation rec {
hash = "sha256-G/30Enycpqg/pWC95CzT9LY99kN4tI+S8aSQhnQO+M8=";
};
outputs = [ "out" "man" ];
outputs = [
"out"
"man"
];
passthru = {
inherit libtorrent;
@ -77,7 +81,11 @@ stdenv.mkDerivation rec {
homepage = "https://rakshasa.github.io/rtorrent/";
description = "Ncurses client for libtorrent, ideal for use with screen, tmux, or dtach";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ebzzry codyopel thiagokokada ];
maintainers = with lib.maintainers; [
ebzzry
codyopel
thiagokokada
];
platforms = lib.platforms.unix;
mainProgram = "rtorrent";
};