depot/pkgs/by-name/ou/outguess/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

33 lines
872 B
Nix

{
fetchFromGitHub,
stdenv,
lib,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "outguess";
version = "0.4";
src = fetchFromGitHub {
owner = "resurrecting-open-source-projects";
repo = "outguess";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-yv01jquPTnVk9fd1tqAt1Lxis+ZHZqdG3NiTFxfoXAE=";
};
nativeBuildInputs = [ autoreconfHook ];
strictDeps = true;
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;
};
})