diff options
author | Ben Sima <ben@bsima.me> | 2021-04-23 11:15:17 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:34 -0500 |
commit | 5348f71ab93b399482bd3d57ee67651087686013 (patch) | |
tree | 9c08582a637d059a3784f4a1d5a9a97ed38bf71f /Biz/Bild/Deps/bearssl.nix | |
parent | d9bf241179ca2a425ae23672d22d21ff644940f3 (diff) |
Switch to my nixpkgs fork
This way I can develop on nixpkgs directly, and directly send patches upstream,
instead of trying to copy files back and forth and work with overlays.
Of course with private stuff that I will never publish, I should use overlays,
but that will probably not be very many things, I imagine.
Diffstat (limited to 'Biz/Bild/Deps/bearssl.nix')
-rw-r--r-- | Biz/Bild/Deps/bearssl.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Biz/Bild/Deps/bearssl.nix b/Biz/Bild/Deps/bearssl.nix deleted file mode 100644 index bbede64..0000000 --- a/Biz/Bild/Deps/bearssl.nix +++ /dev/null @@ -1,24 +0,0 @@ -{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; - }; -} |