mktorrent: formatting

This commit is contained in:
Winter 2022-07-23 23:50:48 -04:00
parent 46cf1b9781
commit 3f99d1b6b6

View File

@ -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 ];
};
}