File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 184
184
pkgs . yq
185
185
pkgs . rsync
186
186
pkgs . netcat
187
+ pkgs . crypto_cli
187
188
188
189
# To actually run buildah on nixos, I had to follow this: https://gist.github.com/alexhrescale/474d55635154e6b2cd6362c3bb403faf
189
190
pkgs . buildah
Original file line number Diff line number Diff line change 1
1
self : super : {
2
2
cryptobox = self . callPackage ./pkgs/cryptobox { } ;
3
3
zauth = self . callPackage ./pkgs/zauth { } ;
4
+ crypto_cli = self . callPackage ./pkgs/crypto_cli { } ;
4
5
5
6
nginxModules = super . nginxModules // {
6
7
zauth = {
Original file line number Diff line number Diff line change
1
+ { fetchFromGitHub
2
+ , lib
3
+ , libsodium
4
+ , perl
5
+ , pkg-config
6
+ , rustPlatform
7
+ , stdenv
8
+ } :
9
+
10
+ rustPlatform . buildRustPackage rec {
11
+ name = "crypto-cli-${ version } " ;
12
+ version = "0.1.0" ;
13
+ nativeBuildInputs = [ pkg-config perl ] ;
14
+ buildInputs = [ libsodium ] ;
15
+ src = fetchFromGitHub {
16
+ owner = "wireapp" ;
17
+ repo = "core-crypto" ;
18
+ rev = "bb9e7b6d21beaebcb4278dee1a9e6feaa77e711f" ;
19
+ sha256 = "sha256-3D524DTgiNTqTlBIzCzTktCyYS0iA2TSi7axvzrvPLU=" ;
20
+ } ;
21
+ cargoSha256 = "sha256-he7cytqEhVFiPw4bVAjveh2xQE0nO1dE4yzAVWz6sSc=" ;
22
+ }
23
+
You can’t perform that action at this time.
0 commit comments