nixpkgs/pkgs/tools/security/cb0cat/default.nix
Austin Seipp fb055c10f6 Make my packages slightly more consistent.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-07 20:27:02 -06:00

25 lines
628 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;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}