lol

ocamlPackages.fiber: move source to repository

+10 -9
+10 -9
pkgs/development/ocaml-modules/fiber/default.nix
··· 1 - { lib, buildDunePackage, dune_3, stdune, dyn }: 2 3 buildDunePackage rec { 4 pname = "fiber"; 5 - inherit (dune_3) src version; 6 7 duneVersion = "3"; 8 - 9 - dontAddPrefix = true; 10 11 buildInputs = [ stdune dyn ]; 12 13 - preBuild = '' 14 - rm -r vendor/csexp 15 - ''; 16 - 17 meta = with lib; { 18 description = "Structured concurrency library"; 19 - inherit (dune_3.meta) homepage; 20 maintainers = with lib.maintainers; [ ]; 21 license = licenses.mit; 22 };
··· 1 + { lib, buildDunePackage, fetchFromGitHub, stdune, dyn }: 2 3 buildDunePackage rec { 4 pname = "fiber"; 5 + version = "unstable-2023-02-28"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ocaml-dune"; 9 + repo = "fiber"; 10 + rev = "5563b588c1313f128eafa74d66f0626c9128d34d"; 11 + hash = "sha256-18GfGXpu+uiIiCuLhIx5z5jRkem1nNWaQB6Ms0AE9sE="; 12 + }; 13 14 duneVersion = "3"; 15 16 buildInputs = [ stdune dyn ]; 17 18 meta = with lib; { 19 description = "Structured concurrency library"; 20 + homepage = "https://github.com/ocaml-dune/fiber"; 21 maintainers = with lib.maintainers; [ ]; 22 license = licenses.mit; 23 };