Skip to content

Commit 7531c8e

Browse files
author
Matteo Pacini
committed
xcodes: 1.5.0 -> 1.6.0
1 parent 757df4a commit 7531c8e

File tree

3 files changed

+66
-10
lines changed

3 files changed

+66
-10
lines changed

pkgs/by-name/xc/xcodes/generated/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{
33
workspaceStateFile = ./workspace-state.json;
44
hashes = {
5+
"big-num" = "0wj45pmiafhbj5ch7b4s41ldycps0hcj29d0z6fanhiy7ljlhk35";
56
"data" = "1jf2y9dbg1qvxkkabdkihdnr1kmznq79h18j65a7iw1hljdp8hyg";
67
"Foundation" = "0hcpc15v38l32qc2sh4gqj909b1f90knln9yz3mfiyf6xi7iy6q7";
78
"KeychainAccess" = "0m57pq1vn5qarmlx5x4kfv0yzjylafl3ipih5p60zyfsx6k5b55l";
@@ -10,6 +11,8 @@
1011
"PromiseKit" = "19pkhk505pz03hqmv8h1lgm83iw5jha6j1v06fyzz0xar2ywv6vg";
1112
"Rainbow" = "0iv31azny668vpsjgmldgkgn9cp8i5h9rlc6w5bs8q63nwq19wb0";
1213
"swift-argument-parser" = "19b4pkcx4xf0iwg0nbr7wvkkbwl6h8sch848gid6l98728glmcw9";
14+
"swift-crypto" = "020b8q4ss2k7a65r5dgh59z40i6sn7ij1allxkh8c8a9d0jzn313";
15+
"swift-srp" = "0nsinkgf050z1wkzmaxaf5qkvplsgyqwps9xi9zkbcg6y7143xy1";
1316
"SwiftSoup" = "14klizw8jhmxhxays1b1yh4bp0nbb3l4l1pj6sdnf0iqs0wladv8";
1417
"Version" = "0s5bwr1li6dnsnalfyraq1kzhqmmn9qwp1mld4msrn3q5vvjmql9";
1518
"Yams" = "11abhcfkmqm3cmh7vp7rqzvxd1zj02j2866a2pp6v9m89456xb76";

pkgs/by-name/xc/xcodes/generated/workspace-state.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
"object": {
33
"artifacts": [],
44
"dependencies": [
5+
{
6+
"basedOn": null,
7+
"packageRef": {
8+
"identity": "big-num",
9+
"kind": "remoteSourceControl",
10+
"location": "https://github.com/adam-fowler/big-num",
11+
"name": "big-num"
12+
},
13+
"state": {
14+
"checkoutState": {
15+
"revision": "5c5511ad06aeb2b97d0868f7394e14a624bfb1c7",
16+
"version": "2.0.2"
17+
},
18+
"name": "sourceControlCheckout"
19+
},
20+
"subpath": "big-num"
21+
},
522
{
623
"basedOn": null,
724
"packageRef": {
@@ -137,6 +154,40 @@
137154
},
138155
"subpath": "swift-argument-parser"
139156
},
157+
{
158+
"basedOn": null,
159+
"packageRef": {
160+
"identity": "swift-crypto",
161+
"kind": "remoteSourceControl",
162+
"location": "https://github.com/apple/swift-crypto",
163+
"name": "swift-crypto"
164+
},
165+
"state": {
166+
"checkoutState": {
167+
"revision": "ddb07e896a2a8af79512543b1c7eb9797f8898a5",
168+
"version": "1.1.7"
169+
},
170+
"name": "sourceControlCheckout"
171+
},
172+
"subpath": "swift-crypto"
173+
},
174+
{
175+
"basedOn": null,
176+
"packageRef": {
177+
"identity": "swift-srp",
178+
"kind": "remoteSourceControl",
179+
"location": "https://github.com/xcodesOrg/swift-srp",
180+
"name": "swift-srp"
181+
},
182+
"state": {
183+
"checkoutState": {
184+
"branch": "main",
185+
"revision": "543aa0122a0257b992f6c7d62d18a26e3dffb8fe"
186+
},
187+
"name": "sourceControlCheckout"
188+
},
189+
"subpath": "swift-srp"
190+
},
140191
{
141192
"basedOn": null,
142193
"packageRef": {

pkgs/by-name/xc/xcodes/package.nix

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
1-
{ lib
2-
, stdenv
3-
, fetchFromGitHub
4-
, swift
5-
, swiftpm
6-
, swiftpm2nix
7-
, makeWrapper
8-
, aria2
1+
{
2+
lib,
3+
fetchFromGitHub,
4+
swiftPackages,
5+
swift,
6+
swiftpm,
7+
swiftpm2nix,
8+
makeWrapper,
9+
aria2,
910
}:
1011
let
1112
generated = swiftpm2nix.helpers ./generated;
13+
stdenv = swiftPackages.stdenv;
1214
in
1315
stdenv.mkDerivation (finalAttrs: {
1416
pname = "xcodes";
15-
version = "1.5.0";
17+
version = "1.6.0";
1618

1719
src = fetchFromGitHub {
1820
owner = "XcodesOrg";
1921
repo = "xcodes";
2022
rev = finalAttrs.version;
21-
hash = "sha256-vksfvrx0TqtjcOHn38Ey3P6jIFYF4CbD3SVICVFINSU=";
23+
hash = "sha256-TwPfASRU98rifyA/mINFfoY0MbbwmAh8JneVpJa38CA=";
2224
};
2325

2426
nativeBuildInputs = [ swift swiftpm makeWrapper ];

0 commit comments

Comments
 (0)