A nix library to make prisma work in your nix shell
Given the prisma engines commit and the hashes of each of the prisma engines binaries, the library downloads the binaries, patches their ELFs and combines them to a package that contains all the binaries, and a shell hook that sets the environment variables pointing to the binaries.
This is also a good option! But if you don't have a private nix binary cache, every developer checking out your project will have to build prisma engines. Additionally, you'll have to manually keep the prisma-engines version in sync with the version in your package-lock.json file, which nix-prisma-utils detects automatically.
The drawback of this is that the version of prisma-engines from nixpkgs dictates which version of prisma you have to use in node.js. With nix-prisma-utils it's the other way around. You can simply install prisma trhough npm or pnpm, and then let nix-prisma-utils do the rest.
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
prisma-utils.url = "github:VanCoding/nix-prisma-utils";
};
outputs =
{ nixpkgs, prisma-utils, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
prisma = prisma-utils.lib.prisma-factory {
inherit pkgs;
# leave the hash empty, nix will complain and tell you the right hash
hash = "";
npmLock = ./package-lock.json; # <--- path to our package-lock.json file that contains the version of prisma-engines
# if you use another package manager from npm, choose yours from
# yarnLock = ./yarn.lock;
# pnpmLock = ./pnpm-lock.yaml;
# bunLock = ./bun.lock;
# or if you want to specify the prisma commit directly
# version = {
# majorVersion = 7;
# commit = "....";
# };
};
in
{
devShells.${system}.default = pkgs.mkShell {
env = prisma.env;
# or, you can use `shellHook` instead of `env` to load the same environment variables.
# shellHook = prisma.shellHook;
};
};
}The Legacy API (with fromNpmLock, fromYarnLock, etc.) is now deprecated and we recommend switching to the new API above.
Before contributing, please make sure that your code is formatted correctly by running
nix fmtAll tests (including format check) can be run by
nix flake checkMIT