Skip to content

Commit

Permalink
Merge pull request #9 from jurraca/version-9.3
Browse files Browse the repository at this point in the history
Bump to v9.3
  • Loading branch information
fjahr authored Sep 26, 2024
2 parents cf9c723 + 0c526c2 commit 3f27c7b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# build the package
pkgs.stdenv.mkDerivation rec {
name = "rpki-client";
version = "9.1";
version = "9.3";

src = rpki-client-src;

Expand Down
16 changes: 8 additions & 8 deletions flake.lock

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

8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
description = "RPKI Client v9.1";
description = "RPKI Client";

# To build the package, run "nix build" in the current directory.
# This will build the rpki-client binary and put it in 'result/bin/'.
Expand All @@ -11,14 +11,14 @@
utils.url = "github:numtide/flake-utils";
# The RPKI portable client source, pinned to a specific version
rpki-client-src = {
url = "github:rpki-client/rpki-client-portable/a8aadf11866008666e17c65da76132659942fe2c"; # v9.1
url = "github:rpki-client/rpki-client-portable/12c58dcd8f61d18567fda0689ba64cb4b8c70a2d"; # v9.3
flake = false;
};
# The openbsd shim of rpki-client-portable, which gets pulled into rpki-client at build time
# Since Nix can't fetch external sources (or access the Internet) at build time, we pull it in explicitly.
# See https://github.com/rpki-client/rpki-client-portable/blob/master/update.sh
rpki-openbsd-src = {
url = "github:rpki-client/rpki-client-openbsd/a59ae351b4f900cf90b01e755118290047fcdb28"; # v9.1
url = "github:rpki-client/rpki-client-openbsd/dfa32b728c451dab0c97c854fbe23bc7b9be25ad"; # v9.3
flake = false;
};
};
Expand All @@ -39,7 +39,7 @@
defaultPackage = rpki-client;

# To run locally without cloning this repo, create a `cachedir` locally to hold RPKI data.
# Then run "nix run github:fjahr/rpki-client-nix -- -d cachedir"
# Then run "nix run github:asmap/rpki-client-nix -- -d cachedir"
apps.rpki-client = utils.lib.mkApp {drv = rpki-client;};
});
}
4 changes: 4 additions & 0 deletions versions.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{version}: let
versionHashes = {
"9.3" = {
portable = "12c58dcd8f61d18567fda0689ba64cb4b8c70a2d";
openbsd = "dfa32b728c451dab0c97c854fbe23bc7b9be25ad";
};
"9.1" = {
portable = "a8aadf11866008666e17c65da76132659942fe2c";
openbsd = "a59ae351b4f900cf90b01e755118290047fcdb28";
Expand Down

0 comments on commit 3f27c7b

Please sign in to comment.