diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-07 15:35:12 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-07 16:09:38 +0100 |
commit | ed2653ae7dba9c072dcca1aed03b7cda0d910c85 (patch) | |
tree | 84452e729d4dbe8c27e3b7b7d4b3160833cfa40e /flake.nix | |
download | D53-ed2653ae7dba9c072dcca1aed03b7cda0d910c85.tar.gz D53-ed2653ae7dba9c072dcca1aed03b7cda0d910c85.zip |
First version of D53 that does something
First working version
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..6e94593 --- /dev/null +++ b/flake.nix @@ -0,0 +1,36 @@ +{ + description = "D53 is a dynamic DNS updater that sources information from Consul to route services to the correct place"; + + inputs.nixpkgs.url = "github:NixOS/nixpkgs/a3073c49bc0163fea6a121c276f526837672b555"; + inputs.cargo2nix = { + # As of 2022-10-18: two small patches over unstable branch, one for clippy and one to fix feature detection + url = "github:Alexis211/cargo2nix/a7a61179b66054904ef6a195d8da736eaaa06c36"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + outputs = { self, nixpkgs, cargo2nix }: + let + pkgs = import nixpkgs { + system = "x86_64-linux"; + overlays = [ cargo2nix.overlays.default ]; + }; + packageFun = import ./Cargo.nix; + rustVersion = "1.63.0"; + + compile = args: compileMode: + let + packageSet = pkgs.rustBuilder.makePackageSet ({ + inherit packageFun rustVersion; + } // args); + in + packageSet.workspace.d53 { + inherit compileMode; + }; + in + { + test.x86_64-linux.d53 = compile { release = false; } "test"; + debug.x86_64-linux.d53 = compile { release = false; } "build"; + packages.x86_64-linux.d53 = compile { release = true; } "build"; + packages.x86_64-linux.default = self.packages.x86_64-linux.d53; + }; +} |