mirror of
https://git.sr.ht/~edwardloveall/scribe
synced 2025-12-10 04:31:22 +00:00
Add a Scribe Nix package and NixOS module to the flake that a user can build and install. Includes the following supporting changes: - Adding a name and version to package.json to make Nix's mkYarnPackage happy - Update laravel-mix to fix ERR_OSSL_EVP_UNSUPPORTED on newer nodejs versions
17 lines
207 B
Nix
17 lines
207 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
crystal
|
|
lucky-cli
|
|
overmind
|
|
nodejs
|
|
openssl
|
|
pkg-config
|
|
shards
|
|
yarn
|
|
crystal2nix
|
|
pcre
|
|
];
|
|
}
|