nixpkgs/pkgs/by-name/sh/sha1collisiondetection/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

44 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
libtool,
which,
}:
stdenv.mkDerivation rec {
pname = "sha1collisiondetection";
version = "1.0.3";
src = fetchFromGitHub {
owner = "cr-marcstevens";
repo = "sha1collisiondetection";
rev = "stable-v${version}";
sha256 = "0xn31hkkqs0kj9203rzx6w4nr0lq8fnrlm5i76g0px3q4v2dzw1s";
};
makeFlags = [ "PREFIX=$(out)" ];
doCheck = true;
nativeBuildInputs = [
libtool
which
];
meta = with lib; {
description = "Library and command line tool to detect SHA-1 collision";
longDescription = ''
This library and command line tool were designed as near drop-in
replacements for common SHA-1 libraries and sha1sum. They will
compute the SHA-1 hash of any given file and additionally will
detect cryptanalytic collision attacks against SHA-1 present in
each file. It is very fast and takes less than twice the amount
of time as regular SHA-1.
'';
platforms = platforms.all;
maintainers = with maintainers; [ leenaars ];
license = licenses.mit;
};
}