Skip to content

Commit

Permalink
update SLED
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-martin committed Dec 12, 2024
1 parent 567c302 commit 9030422
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 84 deletions.
91 changes: 11 additions & 80 deletions main/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion main/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
nixpkgs-unstable-2024-05-30.url = "github:nixos/nixpkgs/aa61b27554a5fc282758bf0324781e3464ef2cde";
nixpkgs-unstable-2024-07-29.url = "github:nixos/nixpkgs/038fb464fcfa79b4f08131b07f2d8c9a6bcc4160";
stack-lint-extra-deps.url = "github:freckle/stack-lint-extra-deps";
stack-lint-extra-deps-1-2-2.url = "github:freckle/stack-lint-extra-deps/0dccbb297a4bdc01509e2e18c8e3f726014bc35a";
nixpkgs-haskell-updates.url = "github:nixos/nixpkgs/haskell-updates";
flake-utils.url = "github:numtide/flake-utils";
nix-github-actions.url = "github:nix-community/nix-github-actions";
Expand Down
1 change: 1 addition & 0 deletions main/stack-lint-extra-deps/checks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ in
{
stack-lint-extra-deps-1-2-2 = versionCheck "1.2.2.1" packages.stack-lint-extra-deps-1-2-2;
stack-lint-extra-deps-1-2-5 = versionCheck "1.2.5.0" packages.stack-lint-extra-deps-1-2-5;
stack-lint-extra-deps-1-3-0 = versionCheck "1.3.0.0" packages.stack-lint-extra-deps-1-3-0;
}
13 changes: 10 additions & 3 deletions main/stack-lint-extra-deps/packages.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{ inputs, system, ... }:
let
nixpkgs = import inputs.nixpkgs-stable { inherit system; };
nixpkgs = import inputs.nixpkgs-24-11 { inherit system; };
inherit (nixpkgs.haskell.lib) justStaticExecutables;
inherit (builtins) getFlake;
in
rec {
stack-lint-extra-deps-default = stack-lint-extra-deps-1-2-5;
stack-lint-extra-deps-default = stack-lint-extra-deps-1-3-0;

stack-lint-extra-deps-1-2-2 =
justStaticExecutables
inputs.stack-lint-extra-deps-1-2-2.packages.${system}.stack-lint-extra-deps;
(getFlake "github:freckle/stack-lint-extra-deps/0dccbb297a4bdc01509e2e18c8e3f726014bc35a")
.packages.${system}.stack-lint-extra-deps;

stack-lint-extra-deps-1-2-5 =
justStaticExecutables
(getFlake "github:freckle/stack-lint-extra-deps/18bb6cade3ebc8c5b0aca38da75f5c717fa2d467")
.packages.${system}.stack-lint-extra-deps;

stack-lint-extra-deps-1-3-0 =
justStaticExecutables
inputs.stack-lint-extra-deps.packages.${system}.stack-lint-extra-deps;
}

0 comments on commit 9030422

Please sign in to comment.