Merge pull request #206148 from atorres1985-contrib/steghide
steghide: init at 0.5.1.1
This commit is contained in:
commit
4e7dc3b408
44
pkgs/tools/graphics/steghide/default.nix
Normal file
44
pkgs/tools/graphics/steghide/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user