Skip to content

Commit 0601564

Browse files
committed
Remove stable input
1 parent 4c8e75e commit 0601564

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/ci.yaml

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: "Build"
2+
23
on:
34
pull_request:
45
push:
6+
57
jobs:
68
tests:
79
strategy:
@@ -17,6 +19,7 @@ jobs:
1719
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
1820
- run: rm -rf /opt&
1921
- run: nix-build --keep-going
22+
2023
tests-flakes:
2124
strategy:
2225
matrix:
@@ -30,5 +33,11 @@ jobs:
3033
name: pre-commit-hooks
3134
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
3235
- run: rm -rf /opt&
33-
- run: nix flake check -L --show-trace
36+
37+
- name: Check nixpkgs-unstable
38+
run: nix flake check -L --show-trace
39+
40+
- name: Check nixpkgs-stable
41+
run: nix flake check -L --show-trace --override-input nixpkgs github:NixOS/nixpkgs/nixos-24.11
42+
3443
- run: nix eval .#lib.x86_64-linux.run --show-trace

flake.nix

+2-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
description = "Seamless integration of https://pre-commit.com git hooks with Nix.";
33

44
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
5-
inputs.nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.05";
65
inputs.flake-compat = {
76
url = "github:edolstra/flake-compat";
87
flake = false;
@@ -12,7 +11,7 @@
1211
inputs.nixpkgs.follows = "nixpkgs";
1312
};
1413

15-
outputs = { self, nixpkgs, gitignore, nixpkgs-stable, ... }:
14+
outputs = { self, nixpkgs, gitignore, ... }:
1615
let
1716
lib = nixpkgs.lib;
1817
defaultSystems = [
@@ -24,7 +23,6 @@
2423
depsFor = lib.genAttrs defaultSystems (system: {
2524
pkgs = nixpkgs.legacyPackages.${system};
2625
exposed = import ./nix { inherit nixpkgs system; gitignore-nix-src = gitignore; isFlakes = true; };
27-
exposed-stable = import ./nix { nixpkgs = nixpkgs-stable; inherit system; gitignore-nix-src = gitignore; isFlakes = true; };
2826
});
2927
forAllSystems = fn: lib.genAttrs defaultSystems (system: fn depsFor.${system});
3028
in
@@ -48,11 +46,7 @@
4846
};
4947
});
5048

51-
checks = forAllSystems ({ exposed, exposed-stable, ... }:
52-
lib.filterAttrs (k: v: v != null)
53-
(exposed.checks
54-
// (lib.mapAttrs' (name: value: lib.nameValuePair "stable-${name}" value)
55-
exposed-stable.checks)));
49+
checks = forAllSystems ({ exposed, ... }: lib.filterAttrs (k: v: v != null) exposed.checks);
5650

5751
lib = forAllSystems ({ exposed, ... }: { inherit (exposed) run; });
5852

0 commit comments

Comments
 (0)