mirror of
https://git.sr.ht/~edwardloveall/scribe
synced 2025-12-21 01:51:23 +00:00
17 lines
255 B
Nix
17 lines
255 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
shellHook = ''
|
|
export PKG_CONFIG_PATH=${pkgs.openssl.dev}/lib/pkgconfig
|
|
'';
|
|
buildInputs = with pkgs; [
|
|
crystal
|
|
lucky-cli
|
|
overmind
|
|
nodejs
|
|
openssl.dev
|
|
shards
|
|
yarn
|
|
];
|
|
}
|