Adding mktorrent 1.0
This commit is contained in:
parent
9ec69c077e
commit
90bca24b38
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/mktorrent/default.nix
Normal file
27
pkgs/tools/misc/mktorrent/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{stdenv, fetchurl, openssl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mktorrent-1.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/mktorrent/mktorrent-1.0.tar.gz;
|
||||
sha256 = "17qi3nfky240pq6qcmf5qg324mxm83vk9r3nvsdhsvinyqm5d3kg";
|
||||
};
|
||||
|
||||
makeFlags = "USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1" +
|
||||
stdenv.lib.optionalString stdenv.isi686 " USE_LARGE_FILES=1";
|
||||
|
||||
preInstall = ''
|
||||
installFlags=PREFIX=$out
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = {
|
||||
homepage = http://mktorrent.sourceforge.net/;
|
||||
license = "GPLv2+";
|
||||
description = "Command line utility to create BitTorrent metainfo files";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
};
|
||||
}
|
|
@ -1142,6 +1142,8 @@ let
|
|||
|
||||
mktemp = callPackage ../tools/security/mktemp { };
|
||||
|
||||
mktorrent = callPackage ../tools/misc/mktorrent { };
|
||||
|
||||
modemmanager = callPackage ../tools/networking/modemmanager {};
|
||||
|
||||
monit = builderDefsPackage ../tools/system/monit {
|
||||
|
|
Loading…
Reference in a new issue