nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 53 lines 949 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildDunePackage, 5 base64, 6 bos, 7 core, 8 core_kernel, 9 core_unix ? null, 10 lwt_react, 11 ocamlgraph, 12 ppx_sexp_conv, 13 rresult, 14 sexplib, 15 tyxml, 16 ppxlib, 17}: 18 19buildDunePackage (finalAttrs: { 20 pname = "bistro"; 21 version = "unstable-2024-05-17"; 22 23 src = fetchFromGitHub { 24 owner = "pveber"; 25 repo = "bistro"; 26 rev = "d44c44b52148e58ca3842c3efedf3115e376d800"; 27 sha256 = "sha256-naoCEVBfydqSeGGbXYBXfg0PP+Fzk05jFoul7XAz/tM="; 28 }; 29 30 propagatedBuildInputs = [ 31 base64 32 bos 33 core 34 core_kernel 35 core_unix 36 lwt_react 37 ocamlgraph 38 ppx_sexp_conv 39 rresult 40 sexplib 41 tyxml 42 ]; 43 44 minimalOCamlVersion = "4.14"; 45 46 meta = { 47 inherit (finalAttrs.src.meta) homepage; 48 description = "Build and execute typed scientific workflows"; 49 maintainers = [ lib.maintainers.vbgl ]; 50 license = lib.licenses.gpl2; 51 broken = lib.versionAtLeast ppxlib.version "0.36"; 52 }; 53})