mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
80d11e4ca9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/i2pd/versions
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, boost, zlib, openssl
|
|
, upnpSupport ? true, miniupnpc ? null
|
|
, aesniSupport ? false
|
|
, avxSupport ? false
|
|
}:
|
|
|
|
assert upnpSupport -> miniupnpc != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = pname + "-" + version;
|
|
pname = "i2pd";
|
|
version = "2.26.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PurpleI2P";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1za7h449dnnw9h6nx33s5ai3qkakah37yg686a2sp8qynrb0h93h";
|
|
};
|
|
|
|
buildInputs = with stdenv.lib; [ boost zlib openssl ]
|
|
++ optional upnpSupport miniupnpc;
|
|
makeFlags =
|
|
let ynf = a: b: a + "=" + (if b then "yes" else "no"); in
|
|
[ (ynf "USE_AESNI" aesniSupport)
|
|
(ynf "USE_AVX" avxSupport)
|
|
(ynf "USE_UPNP" upnpSupport)
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D i2pd $out/bin/i2pd
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://i2pd.website;
|
|
description = "Minimal I2P router written in C++";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|