at master 1.3 kB view raw
1#!/usr/bin/env nix-shell 2#!nix-shell -p cabal2nix elm2nix -i bash ../../.. 3 4# Update all cabal packages. 5for subpath in 'avh4-lib' 'elm-format-lib' 'elm-format-markdown' 'elm-format-test-lib'; do 6 cabal2nix --no-haddock 'https://github.com/avh4/elm-format' --revision '0.8.8' \ 7 --subpath $subpath > packages/ghc9_8/elm-format/${subpath}.nix 8done 9cabal2nix --no-haddock 'https://github.com/avh4/elm-format' --revision '0.8.8' > packages/ghc9_8/elm-format/elm-format.nix 10cabal2nix 'https://github.com/ekmett/ansi-wl-pprint' --revision 'v0.6.8.1' > packages/ghc9_6/ansi-wl-pprint/default.nix 11 12# We're building binaries from commit that npm installer is using since 13# November 1st release called 0.19.1-6 in npm registry. 14# These binaries are built with newer ghc version and also support Aarch64 for Linux and Darwin. 15# Upstream git tag for 0.19.1 is still pointing to original commit from 2019. 16cabal2nix https://github.com/elm/compiler --revision 2f6dd29258e880dbb7effd57a829a0470d8da48b > packages/ghc9_6/elm/default.nix 17 18echo "need to manually copy registry.dat from an existing elm project" 19#elm2nix snapshot > registry.dat 20 21pushd "$(nix-build -A elmPackages.elm.src --no-out-link ../../../..)/reactor" 22 elm2nix convert > $OLDPWD/packages/elm-srcs.nix 23popd