nixpkgs/pkgs/tools/security/zsteg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
337 B
Nix
Raw Normal View History

2020-12-19 07:37:28 +01:00
{ lib, bundlerApp }:
bundlerApp {
pname = "zsteg";
gemdir = ./.;
exes = [ "zsteg" ];
meta = with lib; {
description = "Detect stegano-hidden data in PNG & BMP";
2020-12-19 07:37:28 +01:00
homepage = "http://zed.0xff.me/";
license = licenses.mit;
2023-11-20 18:43:32 +01:00
maintainers = with maintainers; [ applePrincess h7x4 ];
2023-11-20 18:44:11 +01:00
mainProgram = "zsteg";
2020-12-19 07:37:28 +01:00
};
}