Skip to content

Commit 2dc96f2

Browse files
committed
fix(xh): remove unnecessary conflicting pkg-config, bump
1 parent 9fac19c commit 2dc96f2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/xh/tangram.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pkgConfig from "pkg-config" with { local: "../pkg-config" };
21
import openssl from "openssl" with { local: "../openssl" };
32
import { cargo } from "rust" with { local: "../rust" };
43
import * as std from "std" with { local: "../std" };
@@ -8,7 +7,7 @@ export const metadata = {
87
license: "MIT",
98
name: "xh",
109
repository: "https://github.com/ducaale/xh",
11-
version: "0.24.1",
10+
version: "0.25.0",
1211
provides: {
1312
binaries: ["xh"],
1413
},
@@ -17,7 +16,7 @@ export const metadata = {
1716
export const source = async () => {
1817
const { name, version } = metadata;
1918
const checksum =
20-
"sha256:c5902052c66e20fd2c0b49db14edb027f54500b502108327e17260c64a42edee";
19+
"sha256:6145f48cbefbb2bd1aa97ebcc8528d15ada1303e6e80fdd6a4637014f0f1df1c";
2120
const owner = "ducaale";
2221
const repo = name;
2322
const tag = `v${version}`;
@@ -62,7 +61,7 @@ export const build = async (...args: std.Args<Arg>) => {
6261
disableDefaultFeatures = true;
6362
features.push("native-tls");
6463
if (std.triple.os(host) === "linux") {
65-
env.push(pkgConfig({ build, host: build }), openssl({ build, host }));
64+
env.push(openssl({ build, host }));
6665
}
6766
}
6867

0 commit comments

Comments
 (0)