My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/zsteg/default.nix

16 lines
306 B

{ lib, bundlerApp }:
bundlerApp {
pname = "zsteg";
gemdir = ./.;
exes = [ "zsteg" ];
meta = with lib; {
description = "Detect stegano-hidden data in PNG & BMP.";
homepage = "http://zed.0xff.me/";
license = licenses.mit;
maintainers = with maintainers; [ applePrincess ];
};
}