summary refs log tree commit diff
path: root/pkgs/tools/security/sha1collisiondetection
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2017-02-23 17:39:29 +0100
committerJoachim Fasting <joachifm@fastmail.fm>2017-03-05 18:59:28 +0100
commitb5bb83b273f7c019e1af2ea6358423b8bc2a6054 (patch)
treeb9a0de8834faffbc71865bb8c6251738d34a43e4 /pkgs/tools/security/sha1collisiondetection
parentceb85af9676ac2f5ad44d8ad625428b5be1b5031 (diff)
downloadnixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.tar
nixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.tar.gz
nixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.tar.bz2
nixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.tar.lz
nixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.tar.xz
nixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.tar.zst
nixpkgs-b5bb83b273f7c019e1af2ea6358423b8bc2a6054.zip
sha1collisiondetection: init at 1.0.1
Closes https://github.com/NixOS/nixpkgs/pull/23114
Diffstat (limited to 'pkgs/tools/security/sha1collisiondetection')
-rw-r--r--pkgs/tools/security/sha1collisiondetection/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/tools/security/sha1collisiondetection/default.nix b/pkgs/tools/security/sha1collisiondetection/default.nix
new file mode 100644
index 00000000000..de1796f431d
--- /dev/null
+++ b/pkgs/tools/security/sha1collisiondetection/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchFromGitHub, libtool, which }:
+
+stdenv.mkDerivation  rec {
+  pname = "sha1collisiondetection";
+  version = "1.0.1";
+  name = "${pname}-${version}";
+
+  src = fetchFromGitHub {
+    owner = "cr-marcstevens";
+    repo = pname;
+    rev = "development-v${version}";
+    sha256 = "09vd5mgclcdx7yq3kwzxy1z7pbxcp0xljfly7hy4ixahmnn290h6";
+  };
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  doCheck = true;
+
+  nativeBuildInputs = [ libtool which ];
+
+  meta = with stdenv.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;
+  };
+}