nixpkgs/pkgs/by-name/sh/sha1collisiondetection/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

35 lines
1.0 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;
};
}