Skip to content
Snippets Groups Projects
Commit 07f315ff authored by Daniel Firth's avatar Daniel Firth
Browse files

Take hedgehog from hackage

parent d97b7151
Branches
Tags
No related merge requests found
...@@ -165,22 +165,6 @@ ...@@ -165,22 +165,6 @@
"type": "github" "type": "github"
} }
}, },
"hashable": {
"flake": false,
"locked": {
"lastModified": 1660124057,
"narHash": "sha256-ixWGWClYvVZJwpExYrUWiejVMZniape5q0Gd3uV6mfY=",
"owner": "haskell-unordered-containers",
"repo": "hashable",
"rev": "18138a173a7659e390ba4c026f9ceb1cd850b80e",
"type": "github"
},
"original": {
"owner": "haskell-unordered-containers",
"repo": "hashable",
"type": "github"
}
},
"haskell-flake": { "haskell-flake": {
"locked": { "locked": {
"lastModified": 1661726764, "lastModified": 1661726764,
...@@ -196,22 +180,6 @@ ...@@ -196,22 +180,6 @@
"type": "github" "type": "github"
} }
}, },
"hedgehog": {
"flake": false,
"locked": {
"lastModified": 1662195978,
"narHash": "sha256-aZ+yA9yN80ftM2C1bpjV8SRprY6a1HsdaTDnaoM0zog=",
"owner": "hedgehogqa",
"repo": "haskell-hedgehog",
"rev": "648c148a62105e09f4d76ce01bae96e56a98b7c6",
"type": "github"
},
"original": {
"owner": "hedgehogqa",
"repo": "haskell-hedgehog",
"type": "github"
}
},
"integer-logarithms": { "integer-logarithms": {
"flake": false, "flake": false,
"locked": { "locked": {
...@@ -307,9 +275,7 @@ ...@@ -307,9 +275,7 @@
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"foundation": "foundation", "foundation": "foundation",
"ghc-tcplugins-extra": "ghc-tcplugins-extra", "ghc-tcplugins-extra": "ghc-tcplugins-extra",
"hashable": "hashable",
"haskell-flake": "haskell-flake", "haskell-flake": "haskell-flake",
"hedgehog": "hedgehog",
"integer-logarithms": "integer-logarithms", "integer-logarithms": "integer-logarithms",
"lint-utils": "lint-utils", "lint-utils": "lint-utils",
"memory": "memory", "memory": "memory",
......
{ {
inputs = { inputs = {
all-cabal-hashes = {
url = "github:commercialhaskell/all-cabal-hashes?ref=hackage";
flake = false;
};
cborg = { cborg = {
url = "github:parsonsmatt/cborg/05ca2063ff631667699bffbeee3a4a076943b905"; url = "github:parsonsmatt/cborg/05ca2063ff631667699bffbeee3a4a076943b905";
flake = false; flake = false;
...@@ -22,10 +26,6 @@ ...@@ -22,10 +26,6 @@
url = "github:parsonsmatt/foundation"; url = "github:parsonsmatt/foundation";
flake = false; flake = false;
}; };
hedgehog = {
url = "github:hedgehogqa/haskell-hedgehog";
flake = false;
};
ghc-tcplugins-extra = { ghc-tcplugins-extra = {
url = "github:clash-lang/ghc-tcplugins-extra/8852d8ad94effa39e3400a243b21ae444df6c69e"; url = "github:clash-lang/ghc-tcplugins-extra/8852d8ad94effa39e3400a243b21ae444df6c69e";
flake = false; flake = false;
...@@ -53,10 +53,6 @@ ...@@ -53,10 +53,6 @@
url = "github:bennofs/th-lift-instances"; url = "github:bennofs/th-lift-instances";
flake = false; flake = false;
}; };
all-cabal-hashes = {
url = "github:commercialhaskell/all-cabal-hashes?ref=hackage";
flake = false;
};
}; };
outputs = inputs@{ self, nixpkgs, flake-utils, lint-utils, ... }: outputs = inputs@{ self, nixpkgs, flake-utils, lint-utils, ... }:
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
......
...@@ -97,7 +97,7 @@ final: prev: with pkgs.haskell.lib; { ...@@ -97,7 +97,7 @@ final: prev: with pkgs.haskell.lib; {
hashtables = prev.callHackage "hashtables" "1.3" { }; hashtables = prev.callHackage "hashtables" "1.3" { };
hedgehog = dontHaddock (prev.callCabal2nix "hedgehog" (inputs.hedgehog + /hedgehog) { }); hedgehog = dontHaddock (prev.callHackage "hedgehog" "1.2" { });
hourglass = dontCheck prev.hourglass; hourglass = dontCheck prev.hourglass;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment