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;
# just copy these hashes for now, and then change them when nix complains about the mismatch
prisma-fmt-hash = "sha256-4zsJv0PW8FkGfiiv/9g0y5xWNjmRWD8Q2l2blSSBY3s=";
query-engine-hash = "sha256-6ILWB6ZmK4ac6SgAtqCkZKHbQANmcqpWO92U8CfkFzw=";
libquery-engine-hash = "sha256-n9IimBruqpDJStlEbCJ8nsk8L9dDW95ug+gz9DHS1Lc=";
schema-engine-hash = "sha256-j38xSXOBwAjIdIpbSTkFJijby6OGWCoAx+xZyms/34Q=";
}).fromNpmLock
./package-lock.json; # <--- path to our package-lock.json file that contains the version of prisma-engines
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;
};
};
}
both yarn v1 and yarn-berry should work.
{
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;
# just copy these hashes for now, and then change them when nix complains about the mismatch
prisma-fmt-hash = "sha256-4zsJv0PW8FkGfiiv/9g0y5xWNjmRWD8Q2l2blSSBY3s=";
query-engine-hash = "sha256-6ILWB6ZmK4ac6SgAtqCkZKHbQANmcqpWO92U8CfkFzw=";
libquery-engine-hash = "sha256-n9IimBruqpDJStlEbCJ8nsk8L9dDW95ug+gz9DHS1Lc=";
schema-engine-hash = "sha256-j38xSXOBwAjIdIpbSTkFJijby6OGWCoAx+xZyms/34Q=";
}).fromYarnLock
./yarn.lock; # <--- path to our yarn.lock file that contains the version of prisma-engines
in
{
devShells.${system}.default = pkgs.mkShell {
shellHook = prisma.shellHook;
};
};
}
{
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;
# just copy these hashes for now, and then change them when nix complains about the mismatch
prisma-fmt-hash = "sha256-4zsJv0PW8FkGfiiv/9g0y5xWNjmRWD8Q2l2blSSBY3s=";
query-engine-hash = "sha256-6ILWB6ZmK4ac6SgAtqCkZKHbQANmcqpWO92U8CfkFzw=";
libquery-engine-hash = "sha256-n9IimBruqpDJStlEbCJ8nsk8L9dDW95ug+gz9DHS1Lc=";
schema-engine-hash = "sha256-j38xSXOBwAjIdIpbSTkFJijby6OGWCoAx+xZyms/34Q=";
}).fromPnpmLock
./pnpm-lock.yaml; # <--- path to our pnpm-lock.yaml file that contains the version of prisma-engines
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;
};
};
}
{
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;
# just copy these hashes for now, and then change them when nix complains about the mismatch
prisma-fmt-hash = "sha256-4zsJv0PW8FkGfiiv/9g0y5xWNjmRWD8Q2l2blSSBY3s=";
query-engine-hash = "sha256-6ILWB6ZmK4ac6SgAtqCkZKHbQANmcqpWO92U8CfkFzw=";
libquery-engine-hash = "sha256-n9IimBruqpDJStlEbCJ8nsk8L9dDW95ug+gz9DHS1Lc=";
schema-engine-hash = "sha256-j38xSXOBwAjIdIpbSTkFJijby6OGWCoAx+xZyms/34Q=";
}).fromBunLock
./bun.lock; # <--- path to our bun.lock file that contains the version of prisma-engines.
# NOTE: does not work with bun.lockb!
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;
};
};
}
Before contributing, please make sure that your code is formatted correctly by running
nix fmt
All tests (including format check) can be run by
nix flake check
MIT