windmill: 1.333.2 -> 1.410.3

This commit is contained in:
happysalada 2024-10-20 12:21:05 -04:00
parent 5661717391
commit 8d575db460
2 changed files with 2817 additions and 1969 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,36 +1,37 @@
{ lib
, rustPlatform
, fetchFromGitHub
, buildNpmPackage
, bash
, cmake
, cairo
, deno
, fetchurl
, go
, lld
, makeWrapper
, nsjail
, openssl
, pango
, pixman
, giflib
, pkg-config
, python3
, rustfmt
, stdenv
, swagger-cli
{
lib,
rustPlatform,
fetchFromGitHub,
buildNpmPackage,
bash,
cmake,
cairo,
deno,
fetchurl,
go,
lld,
makeWrapper,
nsjail,
openssl,
pango,
pixman,
giflib,
pkg-config,
python3,
rustfmt,
stdenv,
swagger-cli,
}:
let
pname = "windmill";
version = "1.333.2";
version = "1.410.3";
src = fetchFromGitHub {
owner = "windmill-labs";
repo = "windmill";
rev = "v${version}";
hash = "sha256-QwjmkKe3jxgXQjj/+WlhOdGOXZsrYdRmHtVakoNqYtI=";
hash = "sha256-QPabzgSs+zxgI2dHcMY9ki4jEwm5jQbzwSMaIfBbFG8=";
};
pythonEnv = python3.withPackages (ps: [ ps.pip-tools ]);
@ -42,18 +43,26 @@ let
sourceRoot = "${src.name}/frontend";
npmDepsHash = "sha256-I9h2MvngsluWYaoOP44ufE82SFW+8yhNI2qQNi6oyZE=";
npmDepsHash = "sha256-3AeDGd/4dGHm8kGKEH3sqNOuQ1LPjP5n4qOEaqVMm0w=";
# without these you get a
# FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
env.NODE_OPTIONS="--max-old-space-size=8192";
env.NODE_OPTIONS = "--max-old-space-size=8192";
preBuild = ''
npm run generate-backend-client
'';
buildInputs = [ pixman cairo pango giflib ];
nativeBuildInputs = [ python3 pkg-config ];
buildInputs = [
pixman
cairo
pango
giflib
];
nativeBuildInputs = [
python3
pkg-config
];
installPhase = ''
mkdir -p $out/share
@ -69,11 +78,14 @@ rustPlatform.buildRustPackage {
SQLX_OFFLINE = "true";
RUSTY_V8_ARCHIVE =
let
fetch_librusty_v8 = args:
fetch_librusty_v8 =
args:
fetchurl {
name = "librusty_v8-${args.version}";
url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a";
sha256 = args.shas.${stdenv.hostPlatform.system} or (throw "Unsupported platform ${stdenv.hostPlatform.system}");
sha256 =
args.shas.${stdenv.hostPlatform.system}
or (throw "Unsupported platform ${stdenv.hostPlatform.system}");
meta = {
inherit (args) version;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
@ -94,8 +106,6 @@ rustPlatform.buildRustPackage {
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"archiver-rs-0.5.1" = "sha256-ZIik0mMABmhdx/ullgbOrKH5GAtqcOKq5A6vB7aBSjk=";
"pg-embed-0.7.2" = "sha256-R/SrlzNK7aAOyXVTQ/WPkiQb6FyMg9tpsmPTsiossDY=";
"php-parser-rs-0.1.3" = "sha256-ZeI3KgUPmtjlRfq6eAYveqt8Ay35gwj6B9iOQRjQa9A=";
"progenitor-0.3.0" = "sha256-F6XRZFVIN6/HfcM8yI/PyNke45FL7jbcznIiqj22eIQ=";
"rustpython-ast-0.3.1" = "sha256-q9N+z3F6YICQuUMp3a10OS792tCq0GiSSlkcaLxi3Gs=";
@ -148,11 +158,19 @@ rustPlatform.buildRustPackage {
doCheck = false;
postFixup = ''
patchelf --set-rpath ${lib.makeLibraryPath [openssl]} $out/bin/windmill
patchelf --set-rpath ${lib.makeLibraryPath [ openssl ]} $out/bin/windmill
wrapProgram "$out/bin/windmill" \
--prefix PATH : ${lib.makeBinPath [go pythonEnv deno nsjail bash]} \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [stdenv.cc.cc.lib]} \
--prefix PATH : ${
lib.makeBinPath [
go
pythonEnv
deno
nsjail
bash
]
} \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ stdenv.cc.cc.lib ]} \
--set PYTHON_PATH "${pythonEnv}/bin/python3" \
--set GO_PATH "${go}/bin/go" \
--set DENO_PATH "${deno}/bin/deno" \
@ -164,9 +182,16 @@ rustPlatform.buildRustPackage {
description = "Open-source developer platform to turn scripts into workflows and UIs";
homepage = "https://windmill.dev";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ dit7ya happysalada ];
maintainers = with lib.maintainers; [
dit7ya
happysalada
];
mainProgram = "windmill";
# limited by librusty_v8
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
# nsjail not available on darwin
platforms = [
"x86_64-linux"
"aarch64-linux"
];
};
}