Skip to content

Commit

Permalink
flake: add pname
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed Aug 23, 2024
1 parent 02a3548 commit abdfb6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,11 @@

packages = {
kairos-deps = craneLib.buildDepsOnly (kairosNodeAttrs // {
pname = "kairos";
pname = "kairos-deps";
});

kairos = craneLib.buildPackage (kairosNodeAttrs // {
pname = "kairos";
cargoArtifacts = self'.packages.kairos-deps;
});

Expand Down Expand Up @@ -228,9 +229,11 @@
});

kairos-contracts-deps = craneLib.buildDepsOnly (kairosContractsAttrs // {
pname = "kairos-contracts-deps";
});

kairos-contracts = craneLib.buildPackage (kairosContractsAttrs // {
pname = "kairos-contracts";
cargoArtifacts = self'.packages.kairos-contracts-deps;
});

Expand Down

0 comments on commit abdfb6e

Please sign in to comment.