Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1017 B
Nix
50 lines
1017 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
fetchFromGitHub,
|
|
libjpeg,
|
|
libmcrypt,
|
|
libmhash,
|
|
libtool,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stegseek";
|
|
version = "0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RickdeJager";
|
|
repo = "stegseek";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-B5oJffYOYfsH0YRq/Bq0ciIlCsCONyScFBjP7a1lIzo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
libjpeg
|
|
libmcrypt
|
|
libmhash
|
|
libtool
|
|
zlib
|
|
];
|
|
|
|
# tests get stuck on aarch64-linux
|
|
doCheck = stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isLinux;
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
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 ];
|
|
mainProgram = "stegseek";
|
|
};
|
|
}
|