Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv 2, cmake 3, fetchFromGitHub 4, libjpeg 5, libmcrypt 6, libmhash 7, libtool 8, zlib 9}: 10 11stdenv.mkDerivation rec { 12 pname = "stegseek"; 13 version = "0.6"; 14 15 src = fetchFromGitHub { 16 owner = "RickdeJager"; 17 repo = pname; 18 rev = "v${version}"; 19 sha256 = "sha256-B5oJffYOYfsH0YRq/Bq0ciIlCsCONyScFBjP7a1lIzo="; 20 }; 21 22 nativeBuildInputs = [ cmake ]; 23 24 buildInputs = [ 25 libjpeg 26 libmcrypt 27 libmhash 28 libtool 29 zlib 30 ]; 31 32 doCheck = true; 33 34 meta = with lib; { 35 description = "Tool to crack steganography"; 36 longDescription = '' 37 Stegseek is a lightning fast steghide cracker that can be 38 used to extract hidden data from files. 39 ''; 40 homepage = "https://github.com/RickdeJager/stegseek"; 41 license = with licenses; [ gpl2Only ]; 42 maintainers = with maintainers; [ fab ]; 43 }; 44}