about summary refs log tree commit diff
path: root/pkgs/tools/security/steghide/default.nix
diff options
context:
space:
mode:
authorChristian Kauhaus <christian@kauhaus.de>2021-03-22 18:35:23 +0100
committerChristian Kauhaus <christian@kauhaus.de>2021-03-22 18:35:23 +0100
commit16302209c287f42b4305d7bd9a660bd5206189bb (patch)
treebd1137fe51215761b6d6935620b536a06844f0e9 /pkgs/tools/security/steghide/default.nix
parentf5e8bdd07d1afaabf6b37afc5497b1e498b8046f (diff)
steghide-0.5.1: remove package
This package is considered insecure (week RNG seeding). As it has seen
no upstream activity for 18 years, a bug fix is unlikely.

See also:
* CVE-2021-27211
* https://discourse.nixos.org/t/removal-of-insecure-steghide-package/12071

Fixes #116923
Diffstat (limited to 'pkgs/tools/security/steghide/default.nix')
-rw-r--r--pkgs/tools/security/steghide/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/tools/security/steghide/default.nix b/pkgs/tools/security/steghide/default.nix
deleted file mode 100644
index cb2a0473cf155..0000000000000
--- a/pkgs/tools/security/steghide/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchurl, libjpeg, libmcrypt, zlib, libmhash, gettext, libtool}:
-
-stdenv.mkDerivation rec {
-  buildInputs = [ libjpeg libmcrypt zlib libmhash gettext libtool ];
-  version = "0.5.1";
-  pname = "steghide";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/steghide/steghide/${version}/steghide-${version}.tar.gz" ;
-    sha256 = "78069b7cfe9d1f5348ae43f918f06f91d783c2b3ff25af021e6a312cf541b47b";
-  };
-
-  patches = [
-    ./patches/steghide-0.5.1-gcc34.patch
-    ./patches/steghide-0.5.1-gcc4.patch
-    ./patches/steghide-0.5.1-gcc43.patch
-  ];
-
-  # AM_CXXFLAGS needed for automake
-  preConfigure = ''
-    export AM_CXXFLAGS="$CXXFLAGS -std=c++0x"
-  '';
-
-  meta = with lib; {
-    homepage = "http://steghide.sourceforge.net/";
-    description = "Steganography program that is able to hide data in various kinds of image- and audio-files";
-    license = licenses.gpl2;
-    platforms = platforms.linux;
-  };
-}