forked from speedwing/cncli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
51 lines (49 loc) · 1.64 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
utils.url = "github:kreisys/flake-utils";
rust-nix.url = "github:input-output-hk/rust.nix/work";
rust-nix.inputs.nixpkgs.follows = "nixpkgs";
iohk-nix = {
url = "github:input-output-hk/iohk-nix";
flake = false;
};
};
outputs = { self, nixpkgs, utils, rust-nix, iohk-nix }:
utils.lib.simpleFlake {
inherit nixpkgs;
systems = [ "x86_64-linux" "aarch64-linux" ];
preOverlays = [ rust-nix (iohk-nix + /overlays/crypto) ];
overlay = final: prev:
let lib = prev.lib;
in {
fakeGit = final.writeShellScriptBin "git" "true";
cncli = final.rust-nix.buildPackage {
inherit ((builtins.fromTOML
(builtins.readFile ./Cargo.toml)).package)
name version;
root = ./.;
nativeBuildInputs = with final; [
pkg-config
protobuf
rustfmt
fakeGit
m4
autoconf
automake
];
cargoBuildOptions = x: x ++ [ "--features" "libsodium-sys" ];
buildInputs = with final; [ openssl libsodium ];
PROTOC = "${final.protobuf}/bin/protoc";
PROTOC_INCLUDE = "${final.protobuf}/include";
};
};
packages = { cncli }@pkgs: pkgs;
devShell = { mkShell, rustc, cargo, pkg-config, openssl, protobuf }:
mkShell {
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
buildInputs = [ rustc cargo pkg-config openssl protobuf ];
};
};
}