45 lines
772 B
Nix
45 lines
772 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, libjpeg
|
|
, libmcrypt
|
|
, libmhash
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "steghide";
|
|
version = "0.5.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "museoa";
|
|
repo = "steghide";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-uUXEipIUfu9AbG7Ekz+25JkWSEGzqA7sJHZqezLzUto=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libjpeg
|
|
libmcrypt
|
|
libmhash
|
|
zlib
|
|
];
|
|
|
|
postPatch = ''
|
|
cd src
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/museoa/steghide";
|
|
description = "Open source steganography program";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
})
|