Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • akshay/terraform-http-backend-pass
1 result
Show changes
Commits on Source (2)
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
## Unreleased changes ## Unreleased changes
## 0.1.0.1 -- 2023-05-29
* GetState: Fix existence check. * GetState: Fix existence check.
## 0.1.0.0 -- 2021-02-28 ## 0.1.0.0 -- 2021-02-28
......
{ {
"nodes": { "nodes": {
"flake-utils": { "flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": { "locked": {
"lastModified": 1649676176, "lastModified": 1681202837,
"narHash": "sha256-OWKJratjt2RW151VUlJPRALb7OU2S5s+f0vLj4o1bHM=", "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "a4b154ebbdc88c8498a5c7b01589addc9e9cb678", "rev": "cfacdce06f30d2b68473a46042957675eebb3401",
"type": "github" "type": "github"
}, },
"original": { "original": {
...@@ -17,11 +20,11 @@ ...@@ -17,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1651114127, "lastModified": 1685347552,
"narHash": "sha256-/lLC0wkMZkAdA5e1W76SnJzbhfOGDvync3VRHJMtAKk=", "narHash": "sha256-9woSppRyUFo26yUffORTzttJ+apOt8MmCv6RxpPNTU4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6766fb6503ae1ebebc2a9704c162b2aef351f921", "rev": "f2f1ec390714d303cf84ba086e34e45b450dd8c4",
"type": "github" "type": "github"
}, },
"original": { "original": {
...@@ -36,6 +39,21 @@ ...@@ -36,6 +39,21 @@
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
baseName == ".hspec" baseName == ".hspec"
); );
}; };
haskellPackages = pkgs.haskell.packages.ghc8107.override { haskellPackages = pkgs.haskell.packages.ghc94.override {
overrides = hself: hsuper: overrides = hself: hsuper:
{ {
terraform-http-backend-pass = hlib.overrideSrc (hself.callPackage ./default.nix {}) {src = filteredSource;}; terraform-http-backend-pass = hlib.overrideSrc (hself.callPackage ./default.nix {}) {src = filteredSource;};
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
packages = p: [p.terraform-http-backend-pass]; packages = p: [p.terraform-http-backend-pass];
buildInputs = [ buildInputs = [
pkgs.cabal-install pkgs.cabal-install
pkgs.haskell.packages.ghc8107.haskell-language-server pkgs.haskell.packages.ghc94.haskell-language-server
pkgs.cabal2nix pkgs.cabal2nix
pkgs.pass pkgs.pass
......
cabal-version: >=1.10 cabal-version: >=1.10
name: terraform-http-backend-pass name: terraform-http-backend-pass
version: 0.1.0.0 version: 0.1.0.1
license-file: LICENSE license-file: LICENSE
license: AGPL license: AGPL
author: Akshay Mankar author: Akshay Mankar
......