Merge pull request #107190 from applePrincess/add-zsteg
This commit is contained in:
commit
6f45d62f2b
@ -698,6 +698,16 @@
|
|||||||
githubId = 1078530;
|
githubId = 1078530;
|
||||||
name = "Alexandre Peyroux";
|
name = "Alexandre Peyroux";
|
||||||
};
|
};
|
||||||
|
applePrincess = {
|
||||||
|
email = "appleprincess@appleprincess.io";
|
||||||
|
github = "applePrincess";
|
||||||
|
githubId = 17154507;
|
||||||
|
name = "Lein Matsumaru";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa4096/0xAAA50652F0479205";
|
||||||
|
fingerprint = "BF8B F725 DA30 E53E 7F11 4ED8 AAA5 0652 F047 9205";
|
||||||
|
}];
|
||||||
|
};
|
||||||
ar1a = {
|
ar1a = {
|
||||||
email = "aria@ar1as.space";
|
email = "aria@ar1as.space";
|
||||||
github = "ar1a";
|
github = "ar1a";
|
||||||
|
2
pkgs/tools/security/zsteg/Gemfile
Normal file
2
pkgs/tools/security/zsteg/Gemfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'zsteg'
|
19
pkgs/tools/security/zsteg/Gemfile.lock
Normal file
19
pkgs/tools/security/zsteg/Gemfile.lock
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
iostruct (0.0.4)
|
||||||
|
rainbow (3.0.0)
|
||||||
|
zpng (0.3.1)
|
||||||
|
rainbow
|
||||||
|
zsteg (0.2.2)
|
||||||
|
iostruct
|
||||||
|
zpng (>= 0.3.1)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
zsteg
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
2.1.4
|
16
pkgs/tools/security/zsteg/default.nix
Normal file
16
pkgs/tools/security/zsteg/default.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
44
pkgs/tools/security/zsteg/gemset.nix
Normal file
44
pkgs/tools/security/zsteg/gemset.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
iostruct = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0kwp6ryis32j3z7myw8g7v1yszwrwyl04g2c7flr42pwxga1afxc";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.0.4";
|
||||||
|
};
|
||||||
|
rainbow = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0bb2fpjspydr6x0s8pn1pqkzmxszvkfapv0p4627mywl7ky4zkhk";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "3.0.0";
|
||||||
|
};
|
||||||
|
zpng = {
|
||||||
|
dependencies = ["rainbow"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0ciyab7qxqsxjhfvr6rbpdzg655fi1zygqg9sd9m6wmgc037dj74";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.3.1";
|
||||||
|
};
|
||||||
|
zsteg = {
|
||||||
|
dependencies = ["iostruct" "zpng"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1mwajlsgs27449n2yf2f9hz8g46qv9bz9f58i9cz1jg58spvpxpk";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.2.2";
|
||||||
|
};
|
||||||
|
}
|
@ -26958,6 +26958,8 @@ in
|
|||||||
|
|
||||||
zscroll = callPackage ../applications/misc/zscroll {};
|
zscroll = callPackage ../applications/misc/zscroll {};
|
||||||
|
|
||||||
|
zsteg = callPackage ../tools/security/zsteg { };
|
||||||
|
|
||||||
zynaddsubfx = zyn-fusion;
|
zynaddsubfx = zyn-fusion;
|
||||||
|
|
||||||
zynaddsubfx-fltk = callPackage ../applications/audio/zynaddsubfx {
|
zynaddsubfx-fltk = callPackage ../applications/audio/zynaddsubfx {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user