1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

ocamlPackages.mirage-unix: use Dune 3

This commit is contained in:
Vincent Laporte 2023-03-10 20:51:22 +01:00
parent 2a9ab2a967
commit 2ac2434fe0
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -4,9 +4,11 @@ buildDunePackage rec {
pname = "mirage-unix";
version = "5.0.1";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz";
sha256 = "sha256-U1oLznUDBcJLcVygfSiyl5qRLDM27cm/WrjT0vSGhPg=";
hash = "sha256-U1oLznUDBcJLcVygfSiyl5qRLDM27cm/WrjT0vSGhPg=";
};
propagatedBuildInputs = [ lwt duration mirage-runtime ];