From 466fa6a77392cc759b9ff80a5cbbcaed3a43cebf Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Fri, 9 Dec 2022 06:33:53 -0500 Subject: [PATCH] Add CHANGELOG entry for github sources fix --- CHANGELOG.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1936d..1296c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.