Add CHANGELOG entry for github sources fix

This commit is contained in:
(cdep)illabout 2022-12-09 06:33:53 -05:00
parent 586f0dcdde
commit 466fa6a773
No known key found for this signature in database
GPG Key ID: 462E0C03D11422F4

View File

@ -1,7 +1,8 @@
## next
## 0.2.0
* Add a `callPackage` argument to `stacklock2nix` so that users can easily statically-compile Haskell packages.
* Add a `callPackage` argument to `stacklock2nix` so that users can easily
statically-compile Haskell packages.
This could be used like the following:
@ -14,6 +15,18 @@
};
```
* Make sure `github` types of `extra-deps` in `stack.yaml` are handled
correctly. Previous version did not handle `github` deps correctly
when they had no subdirs.
`extra-deps` in `stack.yaml` like the following will now work:
```yaml
extra-deps:
- github: "cdepillabout/pretty-simple"
commit: "d8ef1b3c2d913a05515b2d1c4fec0b52d2744434"
```
## 0.1.0
* Initial release.