mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ocamlPackages.randomconv: init at 0.1.3
This commit is contained in:
parent
e021f27d75
commit
ad098ac026
21
pkgs/development/ocaml-modules/randomconv/default.nix
Normal file
21
pkgs/development/ocaml-modules/randomconv/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildDunePackage, fetchurl, cstruct }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "randomconv";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/hannesm/randomconv/releases/download/v${version}/randomconv-v${version}.tbz";
|
||||
sha256 = "1iv3r0s5kqxs893b0d55f0r62k777haiahfkkvvfbqwgqsm6la4v";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cstruct ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/hannesm/randomconv";
|
||||
description = "Convert from random bytes to random native numbers";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
|
||||
}
|
@ -829,6 +829,8 @@ let
|
||||
|
||||
qtest = callPackage ../development/ocaml-modules/qtest { };
|
||||
|
||||
randomconv = callPackage ../development/ocaml-modules/randomconv { };
|
||||
|
||||
re = callPackage ../development/ocaml-modules/re { };
|
||||
|
||||
react = callPackage ../development/ocaml-modules/react { };
|
||||
|
Loading…
Reference in New Issue
Block a user