File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 6464 # place the gatekeeper module in the expected libpam location
6565 gatekeeper = self . inputs . gatekeeper . packages . ${ final . system } . default ;
6666 linux-pam = prev . linux-pam . overrideAttrs ( old : {
67- postInstall = ( old . postInstall or "" ) + ''
68- mkdir -p $out/lib/security
69- cp ${ final . gatekeeper } /lib/security/*.so $out/lib/security/
70- '' ;
67+ postInstall =
68+ ( old . postInstall or "" )
69+ + ''
70+ mkdir -p $out/lib/security
71+ cp ${ final . gatekeeper } /lib/security/*.so $out/lib/security/
72+ '' ;
7173 } ) ;
7274 } ;
7375}
Original file line number Diff line number Diff line change 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 ; } ;
You can’t perform that action at this time.
0 commit comments