2022-08-12 12:06:08 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, openssl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "mktorrent";
|
|
|
|
version = "1.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-12-19 01:06:50 +00:00
|
|
|
owner = "pobrn";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "mktorrent";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "17pdc5mandl739f8q26n5is8ga56s83aqcrwhlnnplbxwx2inidr";
|
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "USE_PTHREADS=1" "USE_OPENSSL=1" "USE_LONG_OPTIONS=1" ]
|
2021-01-15 22:18:51 +00:00
|
|
|
++ lib.optional stdenv.isi686 "USE_LARGE_FILES=1"
|
|
|
|
++ lib.optional stdenv.isLinux "CFLAGS=-lgcc_s";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Command line utility to create BitTorrent metainfo files";
|
2022-08-12 12:06:08 +00:00
|
|
|
homepage = "https://github.com/pobrn/mktorrent/wiki";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ Profpatsch winter ];
|
|
|
|
platforms = platforms.all;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "mktorrent";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|