haskell-wasm-repl/docker.nix

13 lines
318 B
Nix
Raw Normal View History

2024-10-10 19:12:48 +05:30
{ system ? builtins.currentSystem }:
let
pkgs = import ./nix/nixpkgs.nix {
system = (builtins.head (builtins.split "-" system)) + "-linux";
};
haskell-wasm-repl = import ./. {
inherit system;
static = true;
};
in pkgs.callPackage ./nix/haskell-wasm-repl/docker.nix {
inherit haskell-wasm-repl;
}