Generate a derivation of (old) Spago dependencies, and use them to install them into the directory structure used by Spago.
This is a project targeting the old versions of Spago and will not be updated to work with the newer versions. This repository remains here for you to read through and fork from, if needed.
For now, simply clone this repo and run npm link. Requires a Node runtime and nix-prefetch-git.
Remember to set npm prefix to something like ~/.npm.
First, generate the spago-packages.nix:
$ spago2nix generate
getting packages..
got 65 packages from Spago list-packages.
# ...
wrote spago-packages.nixThen install these, optionally with more jobs provided to Nix:
$ spago2nix install -j 100
/nix/store/...-install-spago-style
installing dependencies...
# ...
done.
Wrote install script to .spago2nix/installThen build the project:
$ spago2nix build
/nix/store/...-build-spago-style
building project...
done.
Wrote build script to .spago2nix/buildWhen using in your own Nix derivation, the best practice is calling generated scripts from spago-packages.nix:
{ pkgs, stdenv }:
let
spagoPkgs = import ./spago-packages.nix { inherit pkgs; };
in
pkgs.stdenv.mkDerivation rec {
# < ... >
buildPhase =
''
${spagoPkgs.installSpagoStyle} # == spago2nix install
${spagoPkgs.buildSpagoStyle} # == spago2nix build
${spagoPkgs.buildFromNixStore} # == spago2nix build
'';
# < ... >
}The workflow of spago2nix is:
-
Ensure you have Spago installed, a
packages.dhallfile, and aspago.dhallfile. -
Run
spago2nix generateto generate a newspago-packages.nixfile which describes how to build the dependencies.You can add
spago2nixto thenativeBuildInputsof amkShelljust by importing thespago2nixrepositorydefault.nix.spago2nix = import (builtins.fetchGit { url = "[email protected]:justinwoo/spago2nix.git"; rev = "..."; }) { inherit pkgs; }; pkgs.mkShell { nativeBuildInputs = with pkgs; [ spago2nix ];
Then you'll be able to run
spago2nix generatein an impure shell. It will call out to the network to look up hashes for the versions of packages in yourspago.dhall.The output of
spago2nix generatewill be aspago-packages.nixfile, which contains pure derivations for each package dependency, and which you should check into source control. -
In the Nix expression which describes how to build your project, import the generated
spago-packages.nixfile to get the package dependencies.spagoPkgs = import ./spago-packages.nix { inherit pkgs; };
-
When describing the build steps, either use
spago2nix buildorspago build --no-installor call to the compiler directly withpurs compile "src/**/*.purs" ${spagoPackages.compilePaths}.Or do something like this:
pkgs.stdenv.mkDerivation { name = "myderiv"; buildInputs = [ spagoPkgs.installSpagoStyle spagoPkgs.buildSpagoStyle ]; nativeBuildInputs = with pkgs; [ easy-ps.purs-0_13_8 easy-ps.spago ]; src = ./.; unpackPhase = '' cp $src/spago.dhall . cp $src/packages.dhall . cp -r $src/src . install-spago-style ''; buildPhase = '' build-spago-style "./src/**/*.purs" ''; installPhase = '' mkdir $out mv output $out/ ''; }
This has a key drawback: steps 2 and 3 really ought to be a single step.
Because the spago.dhall file doesn't contain any cryptographic verification
of the dependencies, we can't do this as a pure one-step derivation.
The 1-Step Workflow requires an impure Nix build.
There is a flake.nix which provides a package for building a PureScript
project in a Nix derivation. The package is a function
named spago2nix_nativeBuildInputs which has a “type signature” like this:
{
spago-dhall ? "spago.dhall", # the main spago.dhall file name, i.e. "spago.dhall"
srcs-dhall # array of .dhall files, i.e. [./spago.dhall ./packages.dhall]
}: []The spago2nix_nativeBuildInputs function takes as inputs the PureScript
project’s Spago .dhall files, and produces as output an array of
derivations to include in a nativeBuildInputs. For a derivation which
has those nativeBuildInputs, the PureScript project can be built
in the buildPhase by executing build-spago-style.
Example:
stdenv.mkDerivation {
name = "my-purescript-project";
nativeBuildInputs = [
easy-purescript-nix.purs
] ++ (
spago2nix_nativeBuildInputs {
srcs-dhall = [./spago.dhall ./packages.dhall];
}
);
src = nixpkgs.nix-gitignore.gitignoreSource [ ".git" ] ./.;
unpackPhase = ''
cp -r $src/src .
cp -r $src/test .
install-spago-style
'';
buildPhase = ''
build-spago-style "./src/**/*.purs" "./test/**/*.purs"
'';
installPhase = ''
mkdir -p $out
mv output $out/
'';
}For another example, see test-flake/flake.nix
in this repository which shows how to build the uint package.
The flake.nix also has an app for running spago2nix off of Github,
for example:
nix run github:justinwoo/spago2nix#spago2nixHere is a blog post I did about this project: https://github.com/justinwoo/my-blog-posts/blob/master/posts/2019-06-22-spago2nix-why-and-how.md
Nix gives out the specific constant SHA256 hash for broken Git fetches, so the error is thrown. One of the causes for a broken fetch is wrong checkout revision. Nix supports fetches by commit hash and tags out of the box, but fails at plain branch names.
You can use more verbose reference refs/heads/branch-name at packages.dhall before generating a .nix file.
However, the branch name usage is discouraged in Spago (refer to Note here), it's better using a particular commit hash.
Spago2nix will install and build your project dependencies, but you may still want to use spago to bundle your project. You should not use Spago installation or build commands in a derivation. Use Spago's --no-install and --no-build flags when bundling your project as part of the build phase of a derivation:
pkgs.stdenv.mkDerivation {
# < ... >
buildPhase = ''
${spago}/bin/spago bundle-app --no-install --no-build --to $out/index.js
'';
# < ... >
};If you attempt to use Spago commands to install or build in your project, you'll see the following error:
spago: security: createProcess: runInteractiveProcess: exec: does not exist (No such file or directory)
