Skip to content

Commit 1fe186a

Browse files
committed
flake: use fixed nft-marketplace-server
1 parent c48a66e commit 1fe186a

File tree

3 files changed

+32
-16
lines changed

3 files changed

+32
-16
lines changed

arion-compose.nix

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
{ pkgs, ... }:
2-
let
3-
# nft-marketplace-server =
4-
# (pkgs.callPackage (import nft-marketplace-server/release.nix)
5-
# { nixpkgs = pkgs; }).nft-marketplace-server;
6-
# ogmios-datum-cache = (pkgs.callPackage (import ogmios-datum-cache/release.nix)
7-
# { nixpkgs = pkgs;}).ogmios-datum-cache;
8-
# cardano-transaction-lib-server = (import
9-
# cardano-transaction-lib/default.nix).packages.x86_64-linux."cardano-browser-tx-server:exe:cardano-browser-tx-server";
10-
in {
2+
3+
{
114
# NOTE: still can't remember it...
125
# ports = [ "host:container" ]
136
config.services = {

flake.lock

Lines changed: 23 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,15 @@
2323
};
2424

2525
nft-marketplace-server = {
26-
url = "github:mlabs-haskell/nft-marketplace-server";
26+
url = "github:synthetica9/nft-marketplace-server/syn/fix-release";
2727
flake = false;
2828
};
2929

30+
# nft-marketplace-server needs some specific versions.
31+
nixpkgs-nft-marketplace-server = {
32+
url = "github:nixos/nixpkgs/2cf9db0e3d45b9d00f16f2836cb1297bcadc475e";
33+
};
34+
3035
ogmios-datum-cache = {
3136
url = "github:mlabs-haskell/ogmios-datum-cache";
3237
# inputs.nixpkgs.follows = "nixpkgs";
@@ -55,7 +60,7 @@
5560
{
5661
inherit (final.callPackage
5762
(import "${nft-marketplace-server}/release.nix")
58-
{ nixpkgs = final; }) nft-marketplace-server;
63+
{ nixpkgs = inputs.nixpkgs-nft-marketplace-server.legacyPackages.${system}; }) nft-marketplace-server;
5964

6065
# TODO: system-agnostic
6166
inherit (inputs.ogmios-datum-cache.packages.${system}) ogmios-datum-cache;

0 commit comments

Comments
 (0)