From 3f99d1b6b6b1fb9556ef2b0db52fa5a22b5e651d Mon Sep 17 00:00:00 2001 From: Winter Date: Sat, 23 Jul 2022 23:50:48 -0400 Subject: [PATCH] mktorrent: formatting --- pkgs/tools/misc/mktorrent/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/mktorrent/default.nix b/pkgs/tools/misc/mktorrent/default.nix index 089caac7884a..2f168bacbc95 100644 --- a/pkgs/tools/misc/mktorrent/default.nix +++ b/pkgs/tools/misc/mktorrent/default.nix @@ -1,4 +1,4 @@ -{lib, stdenv, fetchFromGitHub, openssl}: +{ lib, stdenv, fetchFromGitHub, openssl }: stdenv.mkDerivation rec { pname = "mktorrent"; @@ -19,10 +19,10 @@ stdenv.mkDerivation rec { buildInputs = [ openssl ]; - meta = { - homepage = "https://github.com/pobrn/mktorrent/wiki"; - license = lib.licenses.gpl2Plus; + meta = with lib; { description = "Command line utility to create BitTorrent metainfo files"; - maintainers = with lib.maintainers; [Profpatsch]; + homepage = "https://github.com/pobrn/mktorrent/wiki"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ Profpatsch ]; }; }