summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-03-29 18:47:53 -0500
committerAustin Seipp <aseipp@pobox.com>2014-03-29 18:48:16 -0500
commit925cce304fd4e3297a7d7135418a21781025184c (patch)
treef0a394f2b78cd101a503b4528496ad63646afb39 /pkgs/tools/security
parent090ee41e6bc1a0fae5c0e85ed213e9ae97211cc3 (diff)
downloadnixlib-925cce304fd4e3297a7d7135418a21781025184c.tar
nixlib-925cce304fd4e3297a7d7135418a21781025184c.tar.gz
nixlib-925cce304fd4e3297a7d7135418a21781025184c.tar.bz2
nixlib-925cce304fd4e3297a7d7135418a21781025184c.tar.lz
nixlib-925cce304fd4e3297a7d7135418a21781025184c.tar.xz
nixlib-925cce304fd4e3297a7d7135418a21781025184c.tar.zst
nixlib-925cce304fd4e3297a7d7135418a21781025184c.zip
cb0cat is now cb1cat
Submissions for CAESAR are now over, so CBEAMr0 has become CBEAMr1 with
some minor alterations.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/cb0cat/default.nix24
-rw-r--r--pkgs/tools/security/cb1cat/default.nix24
2 files changed, 24 insertions, 24 deletions
diff --git a/pkgs/tools/security/cb0cat/default.nix b/pkgs/tools/security/cb0cat/default.nix
deleted file mode 100644
index 0f84cfa6ebc7..000000000000
--- a/pkgs/tools/security/cb0cat/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  name    = "cb0cat-${version}";
-  version = "20131216153906";
-
-  src = fetchurl {
-    url    = "https://www.cblnk.com/cb0cat/dist/${name}.tgz";
-    sha256 = "182767nxfyiis7ac8bn5v8rxb9vlly8n5w42pz1dd0751xwdlp82";
-  };
-
-  installPhase = ''
-    mkdir -p $out/bin
-    mv cb0cat $out/bin
-  '';
-
-  meta = {
-    description = "cryptographic tool based on the CBEAMr0 sponge function";
-    homepage    = "https://www.cblnk.com";
-    license     = stdenv.lib.licenses.bsd3;
-    platforms   = stdenv.lib.platforms.unix;
-    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
-  };
-}
diff --git a/pkgs/tools/security/cb1cat/default.nix b/pkgs/tools/security/cb1cat/default.nix
new file mode 100644
index 000000000000..7c3d9a1661e2
--- /dev/null
+++ b/pkgs/tools/security/cb1cat/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name    = "cb1cat-${version}";
+  version = "20140328100000";
+
+  src = fetchurl {
+    url    = "https://www.cblnk.com/cb1cat/dist/${name}.tgz";
+    sha256 = "0fbly4fg2qsb4kx9wgv357bsa3mmmy8xmy0yszw80k50ixphjswv";
+  };
+
+  installPhase = ''
+    mkdir -p $out/bin
+    mv cb1cat $out/bin
+  '';
+
+  meta = {
+    description = "cryptographic tool based on the CBEAMr1 sponge function";
+    homepage    = "https://www.cblnk.com/cb1cat/";
+    license     = stdenv.lib.licenses.bsd3;
+    platforms   = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+  };
+}