dsniff: unpin stdenv

Old version of GCC was used because of the bug in the new version of GCC
that is long gone, we can safely use the current version now.
This commit is contained in:
Artem Leshchev 2024-05-16 17:43:34 -05:00
parent ea77cefecb
commit 43fa250334

View File

@ -1,10 +1,7 @@
{ gcc9Stdenv, lib, fetchFromGitLab, autoreconfHook, libpcap, db, glib, libnet, libnids, symlinkJoin, openssl
{ stdenv, lib, fetchFromGitLab, autoreconfHook, libpcap, db, glib, libnet, libnids, symlinkJoin, openssl
, rpcsvc-proto, libtirpc, libnsl, libnl
}:
# We compile with GCC 9 since GCC 10 segfaults on the code
# (see https://bugzilla.redhat.com/show_bug.cgi?id=1862809).
let
/*
dsniff's build system unconditionnaly wants static libraries and does not
@ -42,7 +39,7 @@ let
inherit (openssl) name;
paths = with openssl.override { static = true; }; [ out dev ];
};
in gcc9Stdenv.mkDerivation rec {
in stdenv.mkDerivation rec {
pname = "dsniff";
version = "2.4b1";
# upstream is so old that nearly every distribution packages the beta version.