tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.mirage-block: 3.0.0 → 3.0.2
Vincent Laporte
2 years ago
01f457d3
bec9dd54
+9
-5
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
mirage-block
combinators.nix
default.nix
+4
-2
pkgs/development/ocaml-modules/mirage-block/combinators.nix
···
1
1
-
{ buildDunePackage, mirage-block, io-page, logs }:
1
1
+
{ buildDunePackage, mirage-block, logs }:
2
2
3
3
buildDunePackage rec {
4
4
pname = "mirage-block-combinators";
5
5
inherit (mirage-block) version src;
6
6
7
7
-
propagatedBuildInputs = [ mirage-block io-page logs ];
7
7
+
duneVersion = "3";
8
8
+
9
9
+
propagatedBuildInputs = [ mirage-block logs ];
8
10
9
11
meta = mirage-block.meta // {
10
12
description = "Block signatures and implementations for MirageOS using Lwt";
+5
-3
pkgs/development/ocaml-modules/mirage-block/default.nix
···
4
4
5
5
buildDunePackage rec {
6
6
pname = "mirage-block";
7
7
-
version = "3.0.0";
7
7
+
version = "3.0.2";
8
8
+
9
9
+
duneVersion = "3";
8
10
9
11
src = fetchurl {
10
10
-
url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-v${version}.tbz";
11
11
-
sha256 = "sha256-NB5nJpppMtdi0HDjKcCAqRjO4vIbAMfnP934P+SnzmU=";
12
12
+
url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-${version}.tbz";
13
13
+
hash = "sha256-UALUfeL0G1mfSsLgAb/HpQ6OV12YtY+GUOYG6yhUwAI=";
12
14
};
13
15
14
16
propagatedBuildInputs = [ cstruct lwt fmt ];