504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
17 lines
338 B
Nix
17 lines
338 B
Nix
{ 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 h7x4 ];
|
|
mainProgram = "zsteg";
|
|
};
|
|
}
|