nixpkgs/pkgs/tools/security/cb0cat/default.nix
Austin Seipp 433257ad94 cb0cat: add 'unix' to platforms list
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-03-02 05:50:35 -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";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}