1{ lib, bundlerApp }:
2
3bundlerApp {
4 pname = "zsteg";
5
6 gemdir = ./.;
7
8 exes = [ "zsteg" ];
9
10 meta = with lib; {
11 description = "Detect stegano-hidden data in PNG & BMP.";
12 homepage = "http://zed.0xff.me/";
13 license = licenses.mit;
14 maintainers = with maintainers; [ applePrincess ];
15 };
16}