nixpkgs/pkgs/tools/security/stegseek/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
865 B
Nix
Raw Normal View History

{ lib, stdenv
2021-01-03 09:45:12 +00:00
, cmake
, fetchFromGitHub
, libjpeg
, libmcrypt
, libmhash
, libtool
, zlib
}:
stdenv.mkDerivation rec {
pname = "stegseek";
2021-06-29 21:02:01 +00:00
version = "0.6";
2021-01-03 09:45:12 +00:00
src = fetchFromGitHub {
owner = "RickdeJager";
repo = pname;
rev = "v${version}";
2021-06-29 21:02:01 +00:00
sha256 = "sha256-B5oJffYOYfsH0YRq/Bq0ciIlCsCONyScFBjP7a1lIzo=";
2021-01-03 09:45:12 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [
libjpeg
libmcrypt
libmhash
libtool
zlib
];
doCheck = true;
meta = with lib; {
2021-01-03 09:45:12 +00:00
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 ];
2023-11-23 02:51:17 +00:00
mainProgram = "stegseek";
2021-01-03 09:45:12 +00:00
};
}