Skip to content

Commit 6a8c2c0

Browse files
committed
Remove unneeded follows directive from pre-commit-hooks-lib flake dependency
1 parent df999f6 commit 6a8c2c0

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

.last-exported-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Last exported commit from parent repo: e608d124ce3fd1cfa55f1d6b14306d89a66991ad
1+
Last exported commit from parent repo: 2951be329d4591d88308ce8adf7e326432828a7a

nix-bootstrap.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 2.0
55
-- see: https://github.com/sol/hpack
66

77
name: nix-bootstrap
8-
version: 2.0.0.4
8+
version: 2.0.1.0
99
author: gchquser
1010
maintainer: [email protected]
1111
copyright: Crown Copyright

package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
name: nix-bootstrap
15-
version: 2.0.0.4
15+
version: 2.0.1.0
1616
author: gchquser
1717
maintainer: [email protected]
1818
copyright: Crown Copyright

src/Bootstrap/Data/Bootstrappable/FlakeNix.hs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,7 @@ instance IsNixExpr FlakeNix where
224224
};|],
225225
[nixbinding|flake-utils.url = "github:numtide/flake-utils";|]
226226
]
227-
<> [ [nixbinding|pre-commit-hooks-lib = {
228-
inputs.flake-utils.follows = "flake-utils";
229-
url = "github:cachix/pre-commit-hooks.nix";
230-
};|]
227+
<> [ [nixbinding|pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";|]
231228
| usingHooks
232229
]
233230
<> [machNixFlakeInput | isPython]

test/Bootstrap/Data/Bootstrappable/FlakeNixSpec.hs

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,7 @@ spec = describe "flake.nix rendering" do
109109
url = github:edolstra/flake-compat;
110110
};
111111
flake-utils.url = "github:numtide/flake-utils";
112-
pre-commit-hooks-lib = {
113-
inputs.flake-utils.follows = "flake-utils";
114-
url = "github:cachix/pre-commit-hooks.nix";
115-
};
112+
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
116113
};
117114
outputs = {
118115
nixpkgs-src,
@@ -163,10 +160,7 @@ spec = describe "flake.nix rendering" do
163160
url = github:edolstra/flake-compat;
164161
};
165162
flake-utils.url = "github:numtide/flake-utils";
166-
pre-commit-hooks-lib = {
167-
inputs.flake-utils.follows = "flake-utils";
168-
url = "github:cachix/pre-commit-hooks.nix";
169-
};
163+
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
170164
};
171165
outputs = {
172166
nixpkgs-src,
@@ -258,10 +252,7 @@ spec = describe "flake.nix rendering" do
258252
url = github:edolstra/flake-compat;
259253
};
260254
flake-utils.url = "github:numtide/flake-utils";
261-
pre-commit-hooks-lib = {
262-
inputs.flake-utils.follows = "flake-utils";
263-
url = "github:cachix/pre-commit-hooks.nix";
264-
};
255+
pre-commit-hooks-lib.url = "github:cachix/pre-commit-hooks.nix";
265256
};
266257
outputs = {
267258
nixpkgs-src,

0 commit comments

Comments
 (0)