Skip to content
Snippets Groups Projects
Commit 8369c4d5 authored by Daniel Firth's avatar Daniel Firth
Browse files

Merge branch 'pkgs-argument' into 'master'

flake-parts: use pkgs argument

See merge request !48
parents 58e81502 0110bc4d
1 merge request!48flake-parts: use pkgs argument
Pipeline #5466 passed with stages
in 27 seconds
...@@ -37,10 +37,9 @@ ...@@ -37,10 +37,9 @@
imports = [ imports = [
inputs.horizon-hoogle.flakeModule inputs.horizon-hoogle.flakeModule
]; ];
perSystem = { config, system, ... }: perSystem = { pkgs, config, system, ... }:
let let
pkgs-libR = import nixpkgs-libR { inherit system; }; pkgs-libR = import nixpkgs-libR { inherit system; };
pkgs = import nixpkgs { inherit system; };
crypto = inputs.iohk-nix.overlays.crypto; crypto = inputs.iohk-nix.overlays.crypto;
iohk-pkgs = import nixpkgs { inherit system; overlays = [ crypto ]; }; iohk-pkgs = import nixpkgs { inherit system; overlays = [ crypto ]; };
in in
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment