steghide: init at 0.5.1.1

This commit is contained in:
AndersonTorres 2022-12-14 20:00:25 -03:00
parent e1ebefcef4
commit e6bac9563a
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ 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;
};
})

View file

@ -22760,6 +22760,8 @@ with pkgs;
stduuid = callPackage ../development/libraries/stduuid { };
steghide = callPackage ../tools/graphics/steghide { };
stegsolve = callPackage ../tools/graphics/stegsolve { };
StormLib = callPackage ../development/libraries/StormLib { };