3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #182657 from winterqt/mktorrent-platforms

mktorrent: specify platforms
This commit is contained in:
Mario Rodas 2022-07-27 21:08:09 -05:00 committed by GitHub
commit 7c7b94f9b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{lib, stdenv, fetchFromGitHub, openssl}:
{ lib, stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
pname = "mktorrent";
@ -19,10 +19,11 @@ 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 winter ];
platforms = platforms.all;
};
}