stegseek: init at 0.5

gstqt5
Fabian Affolter 2021-01-03 10:45:12 +01:00
parent a8040c700a
commit 4523be286f
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ stdenv
, cmake
, fetchFromGitHub
, libjpeg
, libmcrypt
, libmhash
, libtool
, zlib
}:
stdenv.mkDerivation rec {
pname = "stegseek";
version = "0.5";
src = fetchFromGitHub {
owner = "RickdeJager";
repo = pname;
rev = "v${version}";
sha256 = "19hzr5533b607ihmjj71x682qjr45s75cqxh9zap21z16346ahqn";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
libjpeg
libmcrypt
libmhash
libtool
zlib
];
doCheck = true;
meta = with stdenv.lib; {
description = "Tool to crack steganography";
longDescription = ''
Stegseek is a lightning fast steghide cracker that can be
used to extract hidden data from files.
'';
homepage = "https://github.com/RickdeJager/stegseek";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -16278,6 +16278,8 @@ in
steghide = callPackage ../tools/security/steghide {};
stegseek = callPackage ../tools/security/stegseek {};
stlport = callPackage ../development/libraries/stlport { };
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };