mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
144 lines
3.5 KiB
Nix
144 lines
3.5 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, buildNpmPackage
|
|
, bash
|
|
, cairo
|
|
, deno
|
|
, fetchurl
|
|
, go
|
|
, lld
|
|
, makeWrapper
|
|
, nsjail
|
|
, openssl
|
|
, pango
|
|
, pixman
|
|
, pkg-config
|
|
, python3
|
|
, rust
|
|
, rustfmt
|
|
, stdenv
|
|
, swagger-cli
|
|
}:
|
|
|
|
let
|
|
pname = "windmill";
|
|
version = "1.100.1";
|
|
|
|
fullSrc = fetchFromGitHub {
|
|
owner = "windmill-labs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-o9obIvtFRNGfyOWmAQVLfAmLhwtJVHZWNxGaG7lbbC8=";
|
|
};
|
|
|
|
pythonEnv = python3.withPackages (ps: [ ps.pip-tools ]);
|
|
|
|
frontend-build = buildNpmPackage {
|
|
inherit version;
|
|
|
|
pname = "windmill-ui";
|
|
src = fullSrc;
|
|
|
|
sourceRoot = "source/frontend";
|
|
|
|
npmDepsHash = "sha256-nRx/UQ7GU1iwhddTotCTG08RoOmdbP66zGKYsEp9XOE=";
|
|
|
|
preBuild = ''
|
|
npm run generate-backend-client
|
|
'';
|
|
|
|
buildInputs = [ pixman cairo pango ];
|
|
nativeBuildInputs = [ python3 pkg-config ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share
|
|
mv build $out/share/windmill-frontend
|
|
'';
|
|
};
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
src = "${fullSrc}/backend";
|
|
|
|
SQLX_OFFLINE = "true";
|
|
RUSTY_V8_ARCHIVE =
|
|
let
|
|
arch = rust.toRustTarget stdenv.hostPlatform;
|
|
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_${arch}.a";
|
|
sha256 = args.shas.${stdenv.hostPlatform.system} or (throw "Unsupported platform ${stdenv.hostPlatform.system}");
|
|
meta = { inherit (args) version; };
|
|
};
|
|
in
|
|
fetch_librusty_v8 {
|
|
version = "0.71.0";
|
|
shas = {
|
|
x86_64-linux = "sha256-52usT7MsLme3o3tjxcRJ0U3iX0fKtnvEvyKJeuL1Bvc=";
|
|
aarch64-linux = "sha256-E7CjpBO1cV5wFtLTIPPltGAyX1OEPjfhnVUQ4u3Mzxs=";
|
|
x86_64-darwin = "sha256-+Vj0SgvenrCuHPSYKFoxXTyfWDFbnUgHtWibNnXwbVk=";
|
|
aarch64-darwin = "sha256-p7BaC2nkZ+BGRPSXogpHshBblDe3ZDMGV93gA4sqpUc=";
|
|
};
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"progenitor-0.3.0" = "sha256-EPiAeAKCYBHiISGdXyuqlX/+Xp1feQmniLzt/FIDiLw=";
|
|
"typify-0.0.12" = "sha256-LfFUhr40jKQNO6be2RWend3mbZ/b6i2eljGLx0UTunY=";
|
|
};
|
|
};
|
|
|
|
patches = [
|
|
./swagger-cli.patch
|
|
./run.go.config.proto.patch
|
|
./run.python3.config.proto.patch
|
|
./run.bash.config.proto.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace windmill-worker/src/worker.rs \
|
|
--replace '"/bin/bash"' '"${bash}/bin/bash"'
|
|
'';
|
|
|
|
buildInputs = [ openssl rustfmt lld ];
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper swagger-cli ];
|
|
|
|
preBuild = ''
|
|
pushd ..
|
|
|
|
mkdir -p frontend/build
|
|
|
|
cp -R ${frontend-build}/share/windmill-frontend/* frontend/build
|
|
cp ${fullSrc}/openflow.openapi.yaml .
|
|
|
|
popd
|
|
'';
|
|
|
|
# needs a postgres database running
|
|
doCheck = false;
|
|
|
|
postFixup = ''
|
|
patchelf --set-rpath ${lib.makeLibraryPath [openssl]} $out/bin/windmill
|
|
|
|
wrapProgram "$out/bin/windmill" \
|
|
--prefix PATH : ${lib.makeBinPath [go pythonEnv deno nsjail bash]} \
|
|
--set PYTHON_PATH "${pythonEnv}/bin/python3" \
|
|
--set GO_PATH "${go}/bin/go" \
|
|
--set DENO_PATH "${deno}/bin/deno" \
|
|
--set NSJAIL_PATH "${nsjail}/bin/nsjail"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open-source web IDE, scalable runtime and platform for serverless, workflows and UIs";
|
|
homepage = "https://windmill.dev";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
# limited by librusty_v8
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
};
|
|
}
|