nixpkgs/pkgs/tools/security/cb0cat/default.nix
Austin Seipp 2059d4c339 cb0cat: version 20131216153906
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-02-27 00:01:59 -06:00

23 lines
583 B
Nix

{ 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;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}