Skip to content

Commit 30766cb

Browse files
bumped to 0.1.2.1 ...finally builds on Hackage
1 parent aac95d4 commit 30766cb

File tree

3 files changed

+24
-13
lines changed

3 files changed

+24
-13
lines changed

.github/workflows/cabal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
plan:
23-
- { ghc: "8.2.2", cabal: "2.4.0.1" }
23+
# - { ghc: "8.2.2", cabal: "2.4.0.1" }
2424
- { ghc: "8.4.4", cabal: "2.4.0.1" }
2525
- { ghc: "8.6.5", cabal: "2.4.0.1" }
2626
- { ghc: "8.8.3", cabal: "3.0.1" }

ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog for quickjs-hs
22

3+
### 0.1.2.1
4+
5+
* This one should compile
6+
7+
### 0.1.2
8+
9+
* removed `DerivingVia` for better backwards compatibility
10+
311
### 0.1.1
412

513
* relaxed bounds on packages

quickjs-hs.cabal

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.12
22
name: quickjs-hs
3-
version: 0.1.2
3+
version: 0.1.2.1
44
homepage: https://github.com/goodlyrottenapple/quickjs-hs#readme
55
bug-reports: https://github.com/goodlyrottenapple/quickjs-hs/issues
66
author: Sam Balco
@@ -19,6 +19,19 @@ description:
1919
.
2020
To get started, see the ReadMe below.
2121

22+
23+
extra-source-files:
24+
quickjs/cutils.h
25+
, quickjs/libbf.h
26+
, quickjs/libunicode-table.h
27+
, quickjs/libunicode.h
28+
, quickjs/libregexp-opcode.h
29+
, quickjs/libregexp.h
30+
, quickjs/list.h
31+
, quickjs/quickjs-atom.h
32+
, quickjs/quickjs-opcode.h
33+
34+
2235
source-repository head
2336
type: git
2437
location: https://github.com/goodlyrottenapple/quickjs-hs
@@ -57,22 +70,12 @@ library
5770
, quickjs/quickjs.c
5871
, quickjs/quickjs-libc.h
5972
, quickjs/quickjs-libc.c
60-
includes:
61-
quickjs/cutils.h
62-
, quickjs/libbf.h
63-
, quickjs/libunicode-table.h
64-
, quickjs/libunicode.h
65-
, quickjs/libregexp-opcode.h
66-
, quickjs/libregexp.h
67-
, quickjs/list.h
68-
, quickjs/quickjs-atom.h
69-
, quickjs/quickjs-opcode.h
73+
7074
cc-options:
7175
-static -D_GNU_SOURCE
7276
-DCONFIG_VERSION="2020-07-05"
7377
-DCONFIG_BIGNUM
7478

75-
7679
test-suite quickjs-hs-test
7780
type: exitcode-stdio-1.0
7881
main-is: Spec.hs

0 commit comments

Comments
 (0)