git.delta.rocks / jrsonnet / refs/commits / 20a41a30344f

difftreelog

ci drop libsecret to reduce closure 7x

lvzoruyxYaroslav Bolyukin2026-01-22parent: #9b70922.patch.diff
in: trunk

1 file changed

modifiedflake.nixdiffbeforeafterboth
133 "--enable-gc-assertions"133 "--enable-gc-assertions"
134 ];134 ];
135 });135 });
136 # Libsecret is stupidly huge
137 # https://github.com/oxalica/rust-overlay/issues/211
138 libsecret = final.stdenv.mkDerivation {
139 name = "fake-libsecret";
140 version = "1.0.0";
141 unpackPhase = "true";
142 buildPhase = "true";
143 installPhase = ''
144 mkdir -p $out/lib/
145 echo "" | gcc -shared -o $out/lib/libsecret-1.so.0 -x c -
146 '';
147 };
136 })148 })
137 ];149 ];
138 };150 };