mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
807 B
Nix
29 lines
807 B
Nix
{stdenv, fetchFromGitHub, openssl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mktorrent";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rudde";
|
|
repo = "mktorrent";
|
|
rev = "v${version}";
|
|
sha256 = "17pdc5mandl739f8q26n5is8ga56s83aqcrwhlnnplbxwx2inidr";
|
|
};
|
|
|
|
makeFlags = [ "USE_PTHREADS=1" "USE_OPENSSL=1" "USE_LONG_OPTIONS=1" ]
|
|
++ stdenv.lib.optional stdenv.isi686 "USE_LARGE_FILES=1"
|
|
++ stdenv.lib.optional stdenv.isLinux "CFLAGS=-lgcc_s";
|
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
meta = {
|
|
homepage = "http://mktorrent.sourceforge.net/";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
description = "Command line utility to create BitTorrent metainfo files";
|
|
maintainers = with stdenv.lib.maintainers; [Profpatsch];
|
|
};
|
|
}
|