Skip to content

Commit 6043d49

Browse files
committed
fix: fmt and go version, hopefully
1 parent b926d42 commit 6043d49

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

nix/overlays/default.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@
3131
# place the gatekeeper module in the expected libpam location
3232
gatekeeper = self.inputs.gatekeeper.packages.${final.system}.default;
3333
linux-pam = prev.linux-pam.overrideAttrs (old: {
34-
postInstall = (old.postInstall or "") + ''
35-
mkdir -p $out/lib/security
36-
cp ${final.gatekeeper}/lib/security/*.so $out/lib/security/
37-
'';
34+
postInstall =
35+
(old.postInstall or "")
36+
+ ''
37+
mkdir -p $out/lib/security
38+
cp ${final.gatekeeper}/lib/security/*.so $out/lib/security/
39+
'';
3840
});
3941
};
4042
}

nix/packages/gatekeeper.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{ inputs, ... }:
22
{
33
perSystem =
4-
{ system, pkgs, ... }:
4+
{ system, ... }:
55
let
6-
go124 = inputs.nixpkgs-go124.legacyPackages.${pkgs.system}.go_1_24;
6+
go124 = inputs.nixpkgs-go124.legacyPackages.${system}.go_1_24;
77
in
88
{
99
packages.gatekeeper = inputs.gatekeeper.lib.${system}.makeGatekeeper { go = go124; };

0 commit comments

Comments
 (0)