mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
commit
34b66c5ff3
44
pkgs/tools/security/stegseek/default.nix
Normal file
44
pkgs/tools/security/stegseek/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -16356,6 +16356,8 @@ in
|
||||
|
||||
steghide = callPackage ../tools/security/steghide {};
|
||||
|
||||
stegseek = callPackage ../tools/security/stegseek {};
|
||||
|
||||
stlport = callPackage ../development/libraries/stlport { };
|
||||
|
||||
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };
|
||||
|
Loading…
Reference in New Issue
Block a user