f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
30 lines
829 B
Nix
30 lines
829 B
Nix
{ fetchFromGitHub
|
|
, stdenv
|
|
, lib
|
|
, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "outguess";
|
|
version = "0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "resurrecting-open-source-projects";
|
|
repo = "outguess";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-yv01jquPTnVk9fd1tqAt1Lxis+ZHZqdG3NiTFxfoXAE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
configureFlags = [ "--with-generic-jconfig" ];
|
|
|
|
meta = {
|
|
description = "Universal steganographic tool that allows the insertion of hidden information into the redundant bits of data sources";
|
|
homepage = "https://github.com/resurrecting-open-source-projects/outguess";
|
|
license = lib.licenses.bsdOriginal;
|
|
maintainers = with lib.maintainers; [ HeitorAugustoLN ];
|
|
mainProgram = "outguess";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|