prqlc: 0.13.10 -> 0.13.12, adopt (#529557)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-10 00:14:19 +00:00
committed by GitHub
+7 -9
View File
@@ -11,16 +11,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "prqlc";
version = "0.13.10";
version = "0.13.12";
src = fetchFromGitHub {
owner = "prql";
repo = "prql";
rev = finalAttrs.version;
hash = "sha256-SYIrME3iE1SpqjLvP/TxXXeiURfdrRSedN3FlcTwrt8=";
tag = finalAttrs.version;
hash = "sha256-dVabMpXrdNV6hvUVk80mWuIpg8Vb0ZaJnrezO+FtbKg=";
};
cargoHash = "sha256-4426LQ8X5iGPyjtyHnlmOQmYNHwmTvf6TowpCa463O4=";
cargoHash = "sha256-hL52k61pgqOFpn3aN8DIlx2KlaOjMVD60/x6dMkZ5Rg=";
nativeBuildInputs = [
pkg-config
@@ -33,9 +33,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
zlib
];
env = {
PYO3_PYTHON = "${python3}/bin/python3";
};
env.PYO3_PYTHON = "${python3}/bin/python3";
# we are only interested in the prqlc binary
postInstall = ''
@@ -45,8 +43,8 @@ rustPlatform.buildRustPackage (finalAttrs: {
meta = {
description = "CLI for the PRQL compiler - a simple, powerful, pipelined SQL replacement";
homepage = "https://github.com/prql/prql";
changelog = "https://github.com/prql/prql/blob/${finalAttrs.src.rev}/CHANGELOG.md";
changelog = "https://github.com/prql/prql/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
maintainers = with lib.maintainers; [ hythera ];
};
})