Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
17 lines
337 B
Nix
17 lines
337 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";
|
|
};
|
|
}
|