2019-05-06 16:45:31 +03:00
|
|
|
# How to upgrade packages in this repo
|
|
|
|
|
|
|
|
## Stackage
|
|
|
|
|
|
|
|
To update the Stackage snapshot you need to clone the hazel repository into a
|
|
|
|
separate directory:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ git clone https://github.com/tweag/rules_haskell.git
|
|
|
|
```
|
|
|
|
|
|
|
|
Change into the hazel directory.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ cd rules_haskell/hazel
|
|
|
|
```
|
|
|
|
|
|
|
|
Then execute the following command to update to the specified Stackage
|
|
|
|
snapshot, where `$PROJECT` points to the root of this repository:
|
|
|
|
(Requires `stack`)
|
|
|
|
|
|
|
|
```
|
|
|
|
$ Stackage.hs lts-12.4 "$PROJECT/hazel/packages.bzl"
|
|
|
|
```
|
|
|
|
|
|
|
|
On NixOS you may need to modify `Stackage.hs` to append the following flag to
|
|
|
|
the list of `stack` intrepreter flags: `--nix-packages zlib`.
|
|
|
|
|
|
|
|
This will take a while.
|
|
|
|
|
|
|
|
|
|
|
|
## Nixpkgs
|
|
|
|
|
2019-06-27 19:47:42 +03:00
|
|
|
To update the nixpkgs revision, find a commit in nixkgs-unstable from
|
|
|
|
https://github.com/NixOS/nixpkgs-channels/commits/nixpkgs-unstable and
|
|
|
|
use it in the `rev` field in `nix/nixpkgs/default.src.json`. Set the
|
|
|
|
`sha256` to a dummy hash, e.g., 64 zeros and run `nix-build -A tools
|
|
|
|
-A cached nix` and nix will tell you the correct hash.
|
2019-05-07 17:18:57 +03:00
|
|
|
|
|
|
|
After upgrading the revision, the easiest solution is usually to open
|
|
|
|
a PR and see what fails on CI (running the builds locally can take
|
|
|
|
quite some time). The most common reason for failures is usually that
|
|
|
|
we have overriden a specific package with certain patches that no
|
|
|
|
longer work. In that case, a good first step is to check if these
|
|
|
|
patches are still necessary and if not try to switch to the unpatched
|
|
|
|
package from nixpkgs.
|