mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
56fe7646e0
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. These checks were done: - built on NixOS - /nix/store/gdklqhnf7wzbvishm0kg30sn2cnyyql6-i2pd-2.19.0/bin/i2pd passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 2.19.0 with grep in /nix/store/gdklqhnf7wzbvishm0kg30sn2cnyyql6-i2pd-2.19.0 - directory tree listing: https://gist.github.com/b368821dcfd8906bc0c04fc1f74bf93a - du listing: https://gist.github.com/360ed57afe937d2071c05ec6896aad89
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, fetchpatch
|
|
, 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.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PurpleI2P";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1676dqa4j7vd18fyxgl65yp3ip6aivchicy6qj8rwp3dilqkiv10";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|