Skip to content

Commit ed5bd72

Browse files
authored
Fix for aeson version 2 (#112)
1 parent 15d2e4b commit ed5bd72

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

cabal.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
index-state: 2021-02-25T00:00:00Z
1+
index-state: 2021-11-03T00:00:00Z
22

33
packages: .
44

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ compiler-nix-name ? "ghc8105"
1+
{ compiler-nix-name ? "ghc8107"
22
}:
33
let
44
sources = import ./nix/sources.nix {};

hackage2nix/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ revBindingJson
118118
-> Version
119119
-> BS.ByteString
120120
-> Integer
121-
-> GPDWriter (Text, Value)
121+
-> GPDWriter (Key, Value)
122122
revBindingJson pname vnum cabalFile revNum = do
123123
let qualifiedName = mconcat $ intersperse
124124
"-"

nix-tools.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ library
3030
, Stack2nix.Stack
3131
build-depends: base >=4 && <4.15
3232
, Cabal >= 3.4 && <3.5
33-
, aeson
33+
, aeson >= 2.0.0.0
3434
, aeson-pretty
3535
, base16-bytestring
3636
, bytestring

nix/sources.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"homepage": "https://input-output-hk.github.io/haskell.nix",
66
"owner": "input-output-hk",
77
"repo": "haskell.nix",
8-
"rev": "1992b910e9b4d880e1f4639f4fe7266bceb9a5ad",
9-
"sha256": "15w3wixjnb52f7cj3s94fy0zc0l1gc94p3n2wyq3qqxj10hvirfw",
8+
"rev": "b969bc1b681bddc14d70f14c0dd26ee567fc4464",
9+
"sha256": "0k82j1ndq3rfvznwgvy7qlpm689q0r0619iv4zqp9pbs0ashn6id",
1010
"type": "tarball",
11-
"url": "https://github.com/input-output-hk/haskell.nix/archive/1992b910e9b4d880e1f4639f4fe7266bceb9a5ad.tar.gz",
11+
"url": "https://github.com/input-output-hk/haskell.nix/archive/b969bc1b681bddc14d70f14c0dd26ee567fc4464.tar.gz",
1212
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
1313
},
1414
"niv": {

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
{ compiler-nix-name ? "ghc8105" }:
1+
{ compiler-nix-name ? "ghc8107" }:
22
(import ./. { inherit compiler-nix-name; }).shell
33

0 commit comments

Comments
 (0)