depot/pkgs/development/ocaml-modules/mirage-random/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

22 lines
591 B
Nix

{ lib, buildDunePackage, fetchurl, cstruct }:
buildDunePackage rec {
pname = "mirage-random";
version = "3.0.0";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/mirage-random/releases/download/v${version}/mirage-random-v${version}.tbz";
sha256 = "sha256-Sf4/KB1kMMwXI+yr5H/JuOmynYPNXwlk9dAA+gFAZs8=";
};
propagatedBuildInputs = [ cstruct ];
meta = {
description = "Random signatures for MirageOS";
homepage = "https://github.com/mirage/mirage-random";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}