Skip to content

Commit c9084b3

Browse files
committed
feat(wrappers): add versions 0.1.15, 0.1.16 and 0.1.17
1 parent 5a2b47c commit c9084b3

File tree

5 files changed

+13204
-3
lines changed

5 files changed

+13204
-3
lines changed

nix/ext/versions.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,30 @@
504504
}
505505
},
506506
"wrappers": {
507+
"0.1.15": {
508+
"postgresql": [
509+
"15"
510+
],
511+
"hash": "sha256-R5MvaCx3BwX8NVDqJPJfCOppC2XtKIshh58Hkbw6VHg=",
512+
"pgrx": "0.9.7",
513+
"rust": "1.70.0"
514+
},
515+
"0.1.16": {
516+
"postgresql": [
517+
"15"
518+
],
519+
"hash": "sha256-pfbTGC/cBgv+YuwJ1qMQpb4jZm6n5uvCFLZLS/ZWcfs=",
520+
"pgrx": "0.9.7",
521+
"rust": "1.70.0"
522+
},
523+
"0.1.17": {
524+
"postgresql": [
525+
"15"
526+
],
527+
"hash": "sha256-Wm4O98ms0/J9z/m4s4eYyxiRwTZhSqd9KpxvY42xyNE=",
528+
"pgrx": "0.10.2",
529+
"rust": "1.76.0"
530+
},
507531
"0.1.18": {
508532
"postgresql": [
509533
"15"

nix/ext/wrappers/default.nix

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,45 @@ let
208208
cp ${./v0.1.18/Cargo.lock} ./Cargo.lock
209209
'';
210210
}
211+
// lib.optionalAttrs (version == "0.1.17") {
212+
cargoLock = {
213+
lockFile = ./v0.1.17/Cargo.lock;
214+
outputHashes = {
215+
"clickhouse-rs-1.0.0-alpha.1" = "sha256-0zmoUo/GLyCKDLkpBsnLAyGs1xz6cubJhn+eVqMEMaw=";
216+
};
217+
};
218+
219+
postPatch = ''
220+
cp ${./v0.1.17/Cargo.lock} ./Cargo.lock
221+
'';
222+
}
223+
// lib.optionalAttrs (version == "0.1.16") {
224+
cargoLock = {
225+
lockFile = ./v0.1.16/Cargo.lock;
226+
outputHashes = {
227+
"clickhouse-rs-1.0.0-alpha.1" = "sha256-0zmoUo/GLyCKDLkpBsnLAyGs1xz6cubJhn+eVqMEMaw=";
228+
};
229+
};
230+
231+
postPatch = ''
232+
cp ${./v0.1.16/Cargo.lock} ./Cargo.lock
233+
'';
234+
}
235+
// lib.optionalAttrs (version == "0.1.15") {
236+
cargoLock = {
237+
lockFile = ./v0.1.15/Cargo.lock;
238+
outputHashes = {
239+
"clickhouse-rs-1.0.0-alpha.1" = "sha256-0zmoUo/GLyCKDLkpBsnLAyGs1xz6cubJhn+eVqMEMaw=";
240+
};
241+
};
242+
243+
postPatch = ''
244+
cp ${./v0.1.15/Cargo.lock} ./Cargo.lock
245+
'';
246+
}
211247
);
212248
# All versions that were previously packaged (historical list)
213249
allPreviouslyPackagedVersions = [
214-
"0.1.17"
215-
"0.1.16"
216-
"0.1.15"
217250
"0.1.14"
218251
"0.1.12"
219252
"0.1.11"

0 commit comments

Comments
 (0)