Add provenance headers and fix flake checks for PR409
Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com>
This commit is contained in:
committed by
Sovran Systems
co-authored by
naturallaw777
parent
cb2d6de0ef
commit
88896f00c4
@@ -56,13 +56,18 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosTests.nwc-wallets-port-collision =
|
checks.x86_64-linux = let
|
||||||
import ./nix/tests/nwc-wallets-port-collision.nix {
|
pkgs = import nixpkgs {
|
||||||
inherit nixpkgs;
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
};
|
};
|
||||||
|
fetchNodeModules =
|
||||||
checks.x86_64-linux.nwc-wallets-port-collision =
|
pkgs.callPackage ./packages/build-support/fetch-node-modules.nix {};
|
||||||
self.nixosTests.nwc-wallets-port-collision;
|
mempoolPkgs =
|
||||||
|
pkgs.callPackage ./packages/mempool { inherit fetchNodeModules; };
|
||||||
|
in {
|
||||||
|
mempool-backend = mempoolPkgs.mempool-backend;
|
||||||
|
mempool-frontend = mempoolPkgs.mempool-frontend;
|
||||||
|
rtl = pkgs.callPackage ./packages/rtl { inherit fetchNodeModules; };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Vendored from fort-nix/nix-bitcoin commit 360e30fee.
|
||||||
|
# This local copy does not fetch or import nix-bitcoin.
|
||||||
# This is a modified version of
|
# This is a modified version of
|
||||||
# https://github.com/NixOS/nixpkgs/pull/128749
|
# https://github.com/NixOS/nixpkgs/pull/128749
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Packaging adapted from fort-nix/nix-bitcoin commit 360e30fee.
|
||||||
|
# This local copy does not fetch or import nix-bitcoin.
|
||||||
{ lib
|
{ lib
|
||||||
, stdenvNoCC
|
, stdenvNoCC
|
||||||
, nodejs_22
|
, nodejs_22
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
|
# Packaging adapted from fort-nix/nix-bitcoin commit 360e30fee.
|
||||||
|
# This local copy does not fetch or import nix-bitcoin.
|
||||||
{ lib
|
{ lib
|
||||||
, stdenvNoCC
|
, stdenvNoCC
|
||||||
, nodejs_22
|
, nodejs_22
|
||||||
, nodejs-slim_22
|
, nodejs-slim_22
|
||||||
, fetchNodeModules
|
, fetchNodeModules
|
||||||
, fetchpatch
|
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
}:
|
}:
|
||||||
|
|||||||
Reference in New Issue
Block a user