tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.fiber: move source to repository
Mario Rodas
3 years ago
18819f92
e68c7797
+10
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
fiber
default.nix
+10
-9
pkgs/development/ocaml-modules/fiber/default.nix
···
1
1
-
{ lib, buildDunePackage, dune_3, stdune, dyn }:
1
1
+
{ lib, buildDunePackage, fetchFromGitHub, stdune, dyn }:
2
2
3
3
buildDunePackage rec {
4
4
pname = "fiber";
5
5
-
inherit (dune_3) src version;
5
5
+
version = "unstable-2023-02-28";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "ocaml-dune";
9
9
+
repo = "fiber";
10
10
+
rev = "5563b588c1313f128eafa74d66f0626c9128d34d";
11
11
+
hash = "sha256-18GfGXpu+uiIiCuLhIx5z5jRkem1nNWaQB6Ms0AE9sE=";
12
12
+
};
6
13
7
14
duneVersion = "3";
8
8
-
9
9
-
dontAddPrefix = true;
10
15
11
16
buildInputs = [ stdune dyn ];
12
17
13
13
-
preBuild = ''
14
14
-
rm -r vendor/csexp
15
15
-
'';
16
16
-
17
18
meta = with lib; {
18
19
description = "Structured concurrency library";
19
19
-
inherit (dune_3.meta) homepage;
20
20
+
homepage = "https://github.com/ocaml-dune/fiber";
20
21
maintainers = with lib.maintainers; [ ];
21
22
license = licenses.mit;
22
23
};