From 15af7afde5a50b00921d5eab88b18cc6b493bd94 Mon Sep 17 00:00:00 2001 From: Emily Martins Date: Fri, 27 Jan 2023 16:00:22 +0100 Subject: [PATCH] bump liqwid-nix and liqwid-libs --- flake.lock | 22 +++++++++++----------- flake.nix | 9 +++++++-- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/flake.lock b/flake.lock index 7c05559..477bad4 100644 --- a/flake.lock +++ b/flake.lock @@ -3598,11 +3598,11 @@ "ply": "ply" }, "locked": { - "lastModified": 1673364584, - "narHash": "sha256-NnRH/pSsuCt7JI01IXeumS5ikWZ0rgGcxbeOxtadqvo=", + "lastModified": 1674830336, + "narHash": "sha256-KIJH4kJzBIaDqV3N/f8Dolt//GBc4Cwam7+10HKGg18=", "owner": "Liqwid-Labs", "repo": "liqwid-libs", - "rev": "313314c969a47334835c4f4c7eb98a9f40fd36a8", + "rev": "45f591ddfbf6342f958c4ead6dc6175965f8ce1d", "type": "github" }, "original": { @@ -3630,16 +3630,16 @@ "plutarch": "plutarch" }, "locked": { - "lastModified": 1673280604, - "narHash": "sha256-H/Zj4F0Up/mLx+bDHfnhvMbDj9C4aQ3++X41YXOd41I=", + "lastModified": 1674651955, + "narHash": "sha256-MvVaFcPPXNR+xEFcPRcQdU1GK6annFN6x4GrjMlJFiM=", "owner": "Liqwid-Labs", "repo": "liqwid-nix", - "rev": "36e5f15ce614fe9781189471c731bd79642d080a", + "rev": "72d18a5166235347ec2f435422ee5a062bbd16d6", "type": "github" }, "original": { "owner": "Liqwid-Labs", - "ref": "v2.2.1", + "ref": "v2.3.0", "repo": "liqwid-nix", "type": "github" } @@ -3661,16 +3661,16 @@ "plutarch": "plutarch_2" }, "locked": { - "lastModified": 1673280604, - "narHash": "sha256-H/Zj4F0Up/mLx+bDHfnhvMbDj9C4aQ3++X41YXOd41I=", + "lastModified": 1674651955, + "narHash": "sha256-MvVaFcPPXNR+xEFcPRcQdU1GK6annFN6x4GrjMlJFiM=", "owner": "Liqwid-Labs", "repo": "liqwid-nix", - "rev": "36e5f15ce614fe9781189471c731bd79642d080a", + "rev": "72d18a5166235347ec2f435422ee5a062bbd16d6", "type": "github" }, "original": { "owner": "Liqwid-Labs", - "ref": "v2.2.1", + "ref": "v2.3.0", "repo": "liqwid-nix", "type": "github" } diff --git a/flake.nix b/flake.nix index 4df1620..207c0cf 100644 --- a/flake.nix +++ b/flake.nix @@ -15,14 +15,14 @@ nixpkgs-latest.url = "github:NixOS/nixpkgs"; liqwid-nix = { - url = "github:Liqwid-Labs/liqwid-nix/v2.2.1"; + url = "github:Liqwid-Labs/liqwid-nix/v2.3.0"; inputs.nixpkgs-latest.follows = "nixpkgs-latest"; }; liqwid-libs.url = "github:Liqwid-Labs/liqwid-libs"; }; - outputs = inputs@{ flake-parts, ... }: + outputs = inputs@{ self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { imports = [ inputs.liqwid-nix.flakeModule @@ -54,5 +54,10 @@ }; ci.required = [ "all_onchain" ]; }; + + flake.hydraJobs.x86_64-linux = ( + self.checks.x86_64-linux + // self.packages.x86_64-linux + ); }; }