mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
25 lines
1.4 KiB
Bash
Executable file
25 lines
1.4 KiB
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -p cabal2nix elm2nix -i bash ../../..
|
|
|
|
# Update all cabal packages.
|
|
cabal2nix 'https://github.com/zwilias/elm-instrument' --revision '0.0.7' > packages/ghc8_10/elm-instrument/default.nix
|
|
for subpath in 'avh4-lib' 'elm-format-lib' 'elm-format-markdown' 'elm-format-test-lib'; do
|
|
cabal2nix 'https://github.com/avh4/elm-format' --revision '0.8.7' \
|
|
--subpath $subpath > packages/ghc9_2/elm-format/${subpath}.nix
|
|
done
|
|
cabal2nix 'https://github.com/avh4/elm-format' --revision '0.8.7' > packages/ghc9_2/elm-format/elm-format.nix
|
|
cabal2nix 'https://github.com/stoeffel/elmi-to-json' --revision '1.3.0' > packages/ghc8_10/elmi-to-json/default.nix
|
|
cabal2nix 'https://github.com/ekmett/ansi-wl-pprint' --revision 'v0.6.8.1' > packages/ghc9_6/ansi-wl-pprint/default.nix
|
|
|
|
# We're building binaries from commit that npm installer is using since
|
|
# November 1st release called 0.19.1-6 in npm registry.
|
|
# These binaries are built with newer ghc version and also support Aarch64 for Linux and Darwin.
|
|
# Upstream git tag for 0.19.1 is still pointing to original commit from 2019.
|
|
cabal2nix https://github.com/elm/compiler --revision 2f6dd29258e880dbb7effd57a829a0470d8da48b > packages/ghc9_6/elm/default.nix
|
|
|
|
echo "need to manually copy registry.dat from an existing elm project"
|
|
#elm2nix snapshot > registry.dat
|
|
|
|
pushd "$(nix-build -A elmPackages.elm.src --no-out-link ../../../..)/reactor"
|
|
elm2nix convert > $OLDPWD/packages/elm-srcs.nix
|
|
popd
|