Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 23 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
inputs = {
rv-nix-tools.url = "github:runtimeverification/rv-nix-tools/854d4f05ea78547d46e807b414faad64cea10ae4";
nixpkgs.follows = "rv-nix-tools/nixpkgs";

nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";

wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.128";
wasm-semantics.inputs.nixpkgs.follows = "nixpkgs";
Expand All @@ -24,14 +26,32 @@
};
};

outputs = { self, k-framework, nixpkgs, flake-utils, rv-nix-tools, wasm-semantics
, rust-overlay, stellar-cli-flake, ... }@inputs: flake-utils.lib.eachSystem [
outputs = {
self,
k-framework,
nixpkgs,
nixpkgs-unstable,
flake-utils,
rv-nix-tools,
wasm-semantics,
rust-overlay,
stellar-cli-flake,
...
}@inputs: flake-utils.lib.eachSystem [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
] (system:
let
pkgs-unstable = import nixpkgs-unstable {
inherit system;
};
# temporary workaround for our stale revision of nix for runtime issues on new MacOS versions
gfortranUnstableOverlay = final: prev: {
gfortran = pkgs-unstable.gfortran;
gfortran13 = pkgs-unstable.gfortran;
};
# stellar-cli flake does not build on NixOS machines due to openssl issues during `cargo build`
# putting `pkg-config` in `nativeBuildInputs` will run the `pkg-config` setuphook, which will look for derivations in `buildInputs`
# with a `pkgconfig` directory such as the `openssl` derivation
Expand All @@ -51,6 +71,7 @@
overlays = [
stellar-cli-overlay
(import rust-overlay)
gfortranUnstableOverlay
];
};

Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.72
0.1.73
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "komet"
version = "0.1.72"
version = "0.1.73"
description = "K tooling for the Soroban platform"
authors = [
"Runtime Verification, Inc. <contact@runtimeverification.com>",
Expand Down
Empty file added something
Empty file.
Loading