forked from GitHub/haskell-wasm
bump deps
This commit is contained in:
+2
-1
@@ -9,4 +9,5 @@ doc/
|
||||
setup-config
|
||||
wasm-*-docs.tar.gz
|
||||
cache
|
||||
packagedb
|
||||
packagedb
|
||||
.direnv/
|
||||
Generated
+27
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1783604885,
|
||||
"narHash": "sha256-tzMgSkV7kljEkqIjlgV6F+n+xD+/a35Db8bs7a4BFAo=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "767b0d3ec98a143ad9ed7dfc0d5553510ac27133",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixpkgs-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... }@inputs:
|
||||
let
|
||||
supportedSystems = [
|
||||
"aarch64-darwin" "aarch64-linux"
|
||||
"x86_64-darwin" "x86_64-linux"
|
||||
];
|
||||
|
||||
each-system = f: nixpkgs.lib.genAttrs supportedSystems (system: f rec {
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
inherit (pkgs) lib;
|
||||
inherit system;
|
||||
});
|
||||
in {
|
||||
devShells = each-system ({ pkgs, system, ... }: {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
cabal-install ghc stack
|
||||
];
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
resolver: lts-20.23
|
||||
resolver: lts-24.48
|
||||
packages:
|
||||
- '.'
|
||||
extra-deps: []
|
||||
|
||||
+5
-5
@@ -1,12 +1,12 @@
|
||||
# This file was autogenerated by Stack.
|
||||
# You should not edit this file by hand.
|
||||
# For more information, please see the documentation at:
|
||||
# https://docs.haskellstack.org/en/stable/lock_files
|
||||
# https://docs.haskellstack.org/en/stable/topics/lock_files
|
||||
|
||||
packages: []
|
||||
snapshots:
|
||||
- completed:
|
||||
sha256: 4c972e067bae16b95961dbfdd12e07f1ee6c8fffabbfa05c3d65100b03f548b7
|
||||
size: 650253
|
||||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/20/23.yaml
|
||||
original: lts-20.23
|
||||
sha256: 3286bb954fe0e7e0291ca61fac01a689b7165da9d7e8ba3c3a045be989c860fd
|
||||
size: 732677
|
||||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/24/48.yaml
|
||||
original: lts-24.48
|
||||
|
||||
+4
-4
@@ -1,6 +1,6 @@
|
||||
cabal-version: 2.2
|
||||
name: wasm
|
||||
version: 1.1.2
|
||||
version: 1.2.0
|
||||
synopsis: WebAssembly Language Toolkit and Interpreter
|
||||
description:
|
||||
Library for parsing and interpreting WebAssembly, including:
|
||||
@@ -18,7 +18,7 @@ build-type: Simple
|
||||
category: Language
|
||||
homepage: https://github.com/SPY/haskell-wasm
|
||||
bug-reports: https://github.com/SPY/haskell-wasm/issues
|
||||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC==8.10.4, GHC==9.2.7
|
||||
tested-with: GHC==8.6.5, GHC==8.8.4, GHC==8.10.4, GHC==9.2.7, GHC==9.10.3
|
||||
extra-source-files:
|
||||
README.md
|
||||
src/Language/Wasm/Parser.y
|
||||
@@ -52,8 +52,8 @@ library
|
||||
-fwarn-incomplete-patterns
|
||||
-fwarn-unused-imports
|
||||
build-tool-depends:
|
||||
alex:alex >=3.1.3 && < 3.3
|
||||
, happy:happy >=1.9.4 && < 1.21
|
||||
alex:alex >=3.1.3 && < 3.6
|
||||
, happy:happy ^>=2.1
|
||||
build-depends:
|
||||
array >=0.5 && < 0.6
|
||||
, base >=4.6 && < 5
|
||||
|
||||
Reference in New Issue
Block a user