libtoxcore_0_1: remove
This version has a known vulnerability https://github.com/advisories/GHSA-62pr-4hg6-fwph
This commit is contained in:
parent
1a62113dd9
commit
93ea7dd8f9
@ -1,60 +1,46 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, msgpack
|
{ lib, stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, msgpack
|
||||||
, libvpx, check, libconfig, pkg-config }:
|
, libvpx, check, libconfig, pkg-config }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
generic = { version, sha256 }:
|
pname = "libtoxcore";
|
||||||
stdenv.mkDerivation {
|
version = "0.2.17";
|
||||||
pname = "libtoxcore";
|
|
||||||
inherit version;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "TokTok";
|
owner = "TokTok";
|
||||||
repo = "c-toxcore";
|
repo = "c-toxcore";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
inherit sha256;
|
|
||||||
};
|
|
||||||
|
|
||||||
cmakeFlags = [
|
|
||||||
"-DBUILD_NTOX=ON"
|
|
||||||
"-DDHT_BOOTSTRAP=ON"
|
|
||||||
"-DBOOTSTRAP_DAEMON=ON"
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
libsodium msgpack ncurses libconfig
|
|
||||||
] ++ lib.optionals (!stdenv.isAarch32) [
|
|
||||||
libopus libvpx
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config ];
|
|
||||||
|
|
||||||
doCheck = false; # hangs, tries to access the net?
|
|
||||||
checkInputs = [ check ];
|
|
||||||
|
|
||||||
postFixup =''
|
|
||||||
sed -i $out/lib/pkgconfig/*.pc \
|
|
||||||
-e "s|^libdir=.*|libdir=$out/lib|" \
|
|
||||||
-e "s|^includedir=.*|includedir=$out/include|"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
description = "P2P FOSS instant messaging application aimed to replace Skype";
|
|
||||||
homepage = "https://tox.chat";
|
|
||||||
license = licenses.gpl3Plus;
|
|
||||||
maintainers = with maintainers; [ peterhoeg ];
|
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
in {
|
|
||||||
libtoxcore_0_1 = generic {
|
|
||||||
version = "0.1.11";
|
|
||||||
sha256 = "1fya5gfiwlpk6fxhalv95n945ymvp2iidiyksrjw1xw95fzsp1ij";
|
|
||||||
};
|
|
||||||
|
|
||||||
libtoxcore_0_2 = generic {
|
|
||||||
version = "0.2.17";
|
|
||||||
sha256 = "sha256-SOI6QKOSt/EK9JDrSaV6CrD5sx8aYb5ZL3StYq8u/Dg=";
|
sha256 = "sha256-SOI6QKOSt/EK9JDrSaV6CrD5sx8aYb5ZL3StYq8u/Dg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DBUILD_NTOX=ON"
|
||||||
|
"-DDHT_BOOTSTRAP=ON"
|
||||||
|
"-DBOOTSTRAP_DAEMON=ON"
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libsodium msgpack ncurses libconfig
|
||||||
|
] ++ lib.optionals (!stdenv.isAarch32) [
|
||||||
|
libopus libvpx
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
|
||||||
|
doCheck = false; # hangs, tries to access the net?
|
||||||
|
checkInputs = [ check ];
|
||||||
|
|
||||||
|
postFixup =''
|
||||||
|
sed -i $out/lib/pkgconfig/*.pc \
|
||||||
|
-e "s|^libdir=.*|libdir=$out/lib|" \
|
||||||
|
-e "s|^includedir=.*|includedir=$out/include|"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
|
description = "P2P FOSS instant messaging application aimed to replace Skype";
|
||||||
|
homepage = "https://tox.chat";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ehmry ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -20506,9 +20506,7 @@ with pkgs;
|
|||||||
|
|
||||||
libtorrent-rasterbar = libtorrent-rasterbar-2_0_x;
|
libtorrent-rasterbar = libtorrent-rasterbar-2_0_x;
|
||||||
|
|
||||||
inherit (callPackages ../development/libraries/libtoxcore {})
|
libtoxcore = callPackage ../development/libraries/libtoxcore {};
|
||||||
libtoxcore_0_1 libtoxcore_0_2;
|
|
||||||
libtoxcore = libtoxcore_0_2;
|
|
||||||
|
|
||||||
libtpms = callPackage ../tools/security/libtpms { };
|
libtpms = callPackage ../tools/security/libtpms { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user