Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f53c431645da
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 34b66c5ff3c6
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 3, 2021

  1. stegseek: init at 0.5

    fabaff committed Jan 3, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    4523be2 View commit details

Commits on Jan 5, 2021

  1. Merge pull request #108298 from fabaff/stegseek

    stegseek: init at 0.5
    SuperSandro2000 authored Jan 5, 2021

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    34b66c5 View commit details
Showing with 46 additions and 0 deletions.
  1. +44 −0 pkgs/tools/security/stegseek/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
44 changes: 44 additions & 0 deletions pkgs/tools/security/stegseek/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ stdenv
, cmake
, fetchFromGitHub
, libjpeg
, libmcrypt
, libmhash
, libtool
, zlib
}:

stdenv.mkDerivation rec {
pname = "stegseek";
version = "0.5";

src = fetchFromGitHub {
owner = "RickdeJager";
repo = pname;
rev = "v${version}";
sha256 = "19hzr5533b607ihmjj71x682qjr45s75cqxh9zap21z16346ahqn";
};

nativeBuildInputs = [ cmake ];

buildInputs = [
libjpeg
libmcrypt
libmhash
libtool
zlib
];

doCheck = true;

meta = with stdenv.lib; {
description = "Tool to crack steganography";
longDescription = ''
Stegseek is a lightning fast steghide cracker that can be
used to extract hidden data from files.
'';
homepage = "https://github.com/RickdeJager/stegseek";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16356,6 +16356,8 @@ in

steghide = callPackage ../tools/security/steghide {};

stegseek = callPackage ../tools/security/stegseek {};

stlport = callPackage ../development/libraries/stlport { };

streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; };