2022-07-24 03:50:48 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, openssl }:
|
2013-03-12 18:43:57 +00:00
|
|
|
|
2017-04-07 15:59:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mktorrent";
|
2017-04-07 15:59:54 +00:00
|
|
|
version = "1.1";
|
2013-03-12 18:43:57 +00:00
|
|
|
|
2017-04-07 15:59:54 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-12-15 00:21:16 +00:00
|
|
|
owner = "pobrn";
|
2017-04-07 15:59:54 +00:00
|
|
|
repo = "mktorrent";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "17pdc5mandl739f8q26n5is8ga56s83aqcrwhlnnplbxwx2inidr";
|
2013-03-12 18:43:57 +00:00
|
|
|
};
|
|
|
|
|
2019-10-29 22:21:22 +00:00
|
|
|
makeFlags = [ "USE_PTHREADS=1" "USE_OPENSSL=1" "USE_LONG_OPTIONS=1" ]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional stdenv.isi686 "USE_LARGE_FILES=1"
|
|
|
|
++ lib.optional stdenv.isLinux "CFLAGS=-lgcc_s";
|
2013-03-12 18:43:57 +00:00
|
|
|
|
2019-10-29 22:21:22 +00:00
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
2013-03-12 18:43:57 +00:00
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2022-07-24 03:50:48 +00:00
|
|
|
meta = with lib; {
|
2013-03-12 18:43:57 +00:00
|
|
|
description = "Command line utility to create BitTorrent metainfo files";
|
2022-07-24 03:50:48 +00:00
|
|
|
homepage = "https://github.com/pobrn/mktorrent/wiki";
|
|
|
|
license = licenses.gpl2Plus;
|
2022-07-24 03:51:30 +00:00
|
|
|
maintainers = with maintainers; [ Profpatsch winter ];
|
2022-07-24 03:51:10 +00:00
|
|
|
platforms = platforms.all;
|
2013-03-12 18:43:57 +00:00
|
|
|
};
|
|
|
|
}
|