Unverified Commit 18bdc25b authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

albyhub: 1.17.1 -> 1.17.2 (#417082)

parents a1bd8f1e dbec3661
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,14 +5,14 @@
  ldkNode,
}:

buildGoModule rec {
buildGoModule {
  pname = "ldk-node-go";
  version = "0-unstable-2025-05-21";
  version = "0-unstable-2025-05-25";

  src = fetchFromGitHub {
    owner = "getAlby";
    repo = "ldk-node-go";
    rev = "ca26307fa2d8ee4d30da9affd0b202897f9919f6";
    rev = "13acf1fb7bb52c76dc5a47084dc35e00108e5f28";
    hash = "sha256-UdsfN6UL9lKPQSCfF8oA89U0M3pqj/TcFcs01E7WoXs=";
  };

+3 −3
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
  llvmPackages,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "ldk-node";
  version = "0-unstable-2025-05-21";

@@ -37,7 +37,7 @@ rustPlatform.buildRustPackage rec {
  meta = {
    description = "Embeds the LDK node implementation compiled as shared library objects";
    homepage = "https://github.com/getAlby/ldk-node";
    changelog = "https://github.com/getAlby/ldk-node/blob/${src.rev}/CHANGELOG.md";
    changelog = "https://github.com/getAlby/ldk-node/blob/${finalAttrs.src.rev}/CHANGELOG.md";
    license = with lib.licenses; [
      asl20
      mit
@@ -45,4 +45,4 @@ rustPlatform.buildRustPackage rec {
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ bleetube ];
  };
}
})
+9 −9
Original line number Diff line number Diff line
@@ -21,18 +21,18 @@ let

in

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "albyhub";
  version = "1.17.1";
  version = "1.17.2";

  src = fetchFromGitHub {
    owner = "getAlby";
    repo = "hub";
    tag = "v${version}";
    hash = "sha256-ZDTCA3nMJEA8I7PeSgwQAe+wU8Wk0GaH3ItQLzPhOBQ=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-7+5VWLO4J+ArHyTxapqVQL5GPofV4/QXCu5g+Ix9HoI=";
  };

  vendorHash = "sha256-4e75SqQiRUEEjtDZKDZsGSRavZFh5ulJdMz0Ne7gME0=";
  vendorHash = "sha256-uk0SzrzgT9BpFGMv5qUwXonXLvVgfjjudy+rlj3j5Yo=";
  proxyVendor = true; # needed for secp256k1-zkp CGO bindings

  nativeBuildInputs = [
@@ -48,7 +48,7 @@ buildGoModule rec {
  ];

  frontendYarnOfflineCache = fetchYarnDeps {
    yarnLock = src + "/frontend/yarn.lock";
    yarnLock = finalAttrs.src + "/frontend/yarn.lock";
    hash = "sha256-SStTJGqeqPvXBKjFMPjKEts+jg6A9Vaqi+rZkr/ytdc=";
  };

@@ -56,7 +56,7 @@ buildGoModule rec {
    export HOME=$TMPDIR
    pushd frontend
      fixup-yarn-lock yarn.lock
      yarn config set yarn-offline-mirror "${frontendYarnOfflineCache}"
      yarn config set yarn-offline-mirror "${finalAttrs.frontendYarnOfflineCache}"
      yarn install --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive
      patchShebangs node_modules
      yarn --offline build:http
@@ -68,7 +68,7 @@ buildGoModule rec {
  ];

  ldflags = [
    "-X github.com/getAlby/hub/version.Tag=v${version}"
    "-X github.com/getAlby/hub/version.Tag=v${finalAttrs.version}"
    "-s"
    "-w"
  ];
@@ -95,4 +95,4 @@ buildGoModule rec {
    maintainers = with lib.maintainers; [ bleetube ];
    mainProgram = "albyhub";
  };
}
})