diff options
author | Ben Sima <ben@bsima.me> | 2021-03-19 11:29:25 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-03-19 11:29:25 -0400 |
commit | ba26339b35f4ec5461f044b9ac08a7c2be4143f3 (patch) | |
tree | 0e36824e170a79233107b5abeee27734a53ccfa3 /Biz/Bild/Deps/bearssl.nix | |
parent | de189c5897ca6c122ea9cae34f60f4065fc4437d (diff) |
Add bearssl, gmni, and gmnisrv
Eventually I'll just upstream these to nixpkgs-dev. I also want to make z into a
gemini-compatible zettlekasten. All in due time.
Diffstat (limited to 'Biz/Bild/Deps/bearssl.nix')
-rw-r--r-- | Biz/Bild/Deps/bearssl.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Biz/Bild/Deps/bearssl.nix b/Biz/Bild/Deps/bearssl.nix new file mode 100644 index 0000000..bbede64 --- /dev/null +++ b/Biz/Bild/Deps/bearssl.nix @@ -0,0 +1,24 @@ +{stdenv, fetchgit }: + +stdenv.mkDerivation rec { + name = "bearssl-2021-01-27"; + version = "79b1a9996c094ff593ae50bc4edc1f349f39dd6d"; + src = fetchgit { + url = "https://www.bearssl.org/git/BearSSL"; + rev = version; + sha256 = "0iljfg575g2n4jw6mjfi1xk749pnhsg9zpskqs0kvzch5hn5cvlf"; + }; + installPhase = '' + mkdir -p $out/{include,lib,bin} + cp inc/* $out/include + cp build/libbearssl.a $out/lib/libbearssl.a + cp build/brssl $out/bin/brssl + ''; + meta = with stdenv.lib; { + description = "An implementation of the SSL/TLS protocol in C"; + homepage = "https://bearssl.org/"; + license = licenses.mit; + maintainers = with maintainers; [ bsima ]; + platforms = platforms.all; + }; +} |