Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
Terraform Http Backend Pass
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Akshay Mankar
Terraform Http Backend Pass
Compare revisions
6fa384a497aa9a6acaf2d9e00b3856ea45eea627 to 2270eab3aa36a4af5f85b138235c970b8bfca8f3
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
akshay/terraform-http-backend-pass
Select target project
No results found
2270eab3aa36a4af5f85b138235c970b8bfca8f3
Select Git revision
Swap
Target
akshay/terraform-http-backend-pass
Select target project
akshay/terraform-http-backend-pass
1 result
6fa384a497aa9a6acaf2d9e00b3856ea45eea627
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
nix flake update, use GHC 9.4 for development
· 8f5cd2d1
Akshay Mankar
authored
1 year ago
8f5cd2d1
Bump version to 0.1.0.1
· 2270eab3
Akshay Mankar
authored
1 year ago
2270eab3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
flake.lock
+24
-6
24 additions, 6 deletions
flake.lock
flake.nix
+2
-2
2 additions, 2 deletions
flake.nix
terraform-http-backend-pass.cabal
+1
-1
1 addition, 1 deletion
terraform-http-backend-pass.cabal
with
29 additions
and
9 deletions
CHANGELOG.md
View file @
2270eab3
...
...
@@ -2,6 +2,8 @@
## Unreleased changes
## 0.1.0.1 -- 2023-05-29
*
GetState: Fix existence check.
## 0.1.0.0 -- 2021-02-28
...
...
This diff is collapsed.
Click to expand it.
flake.lock
View file @
2270eab3
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 16
49676176
,
"narHash": "sha256-
OWKJratjt2RW151VUlJPRALb7OU2S5s+f0vLj4o1bHM
=",
"lastModified": 16
81202837
,
"narHash": "sha256-
H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg
=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "
a4b154ebbdc88c8498a5c7b01589addc9e9cb678
",
"rev": "
cfacdce06f30d2b68473a46042957675eebb3401
",
"type": "github"
},
"original": {
...
...
@@ -17,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 16
51114127
,
"narHash": "sha256-
/lLC0wkMZkAdA5e1W76SnJzbhfOGDvync3VRHJMtAKk
=",
"lastModified": 16
85347552
,
"narHash": "sha256-
9woSppRyUFo26yUffORTzttJ+apOt8MmCv6RxpPNTU4
=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "
6766fb6503ae1ebebc2a9704c162b2aef351f921
",
"rev": "
f2f1ec390714d303cf84ba086e34e45b450dd8c4
",
"type": "github"
},
"original": {
...
...
@@ -36,6 +39,21 @@
"flake-utils": "flake-utils",
"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",
...
...
This diff is collapsed.
Click to expand it.
flake.nix
View file @
2270eab3
...
...
@@ -26,7 +26,7 @@
baseName
==
".hspec"
);
};
haskellPackages
=
pkgs
.
haskell
.
packages
.
ghc
8107
.
override
{
haskellPackages
=
pkgs
.
haskell
.
packages
.
ghc
94
.
override
{
overrides
=
hself
:
hsuper
:
{
terraform-http-backend-pass
=
hlib
.
overrideSrc
(
hself
.
callPackage
./default.nix
{})
{
src
=
filteredSource
;};
...
...
@@ -39,7 +39,7 @@
packages
=
p
:
[
p
.
terraform-http-backend-pass
];
buildInputs
=
[
pkgs
.
cabal-install
pkgs
.
haskell
.
packages
.
ghc
8107
.
haskell-language-server
pkgs
.
haskell
.
packages
.
ghc
94
.
haskell-language-server
pkgs
.
cabal2nix
pkgs
.
pass
...
...
This diff is collapsed.
Click to expand it.
terraform-http-backend-pass.cabal
View file @
2270eab3
cabal-version: >=1.10
name: terraform-http-backend-pass
version: 0.1.0.
0
version: 0.1.0.
1
license-file: LICENSE
license: AGPL
author: Akshay Mankar
...
...
This diff is collapsed.
Click to expand it.