mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
ocamlPackages.type_id: Init at 0.0.1
This commit is contained in:
parent
1df767a1d4
commit
95a9c943b7
38
pkgs/development/ocaml-modules/type_id/default.nix
Normal file
38
pkgs/development/ocaml-modules/type_id/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildDunePackage
|
||||
, fetchurl
|
||||
, alcotest
|
||||
, type_eq
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "type_id";
|
||||
version = "0.0.1";
|
||||
|
||||
minimalOCamlVersion = "4.08.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/skolemlabs/${pname}/releases/download/${version}/${pname}-${version}.tbz";
|
||||
hash = "sha256-hmVAD9vgU1HLnB7d1TX17V+Alf5ZXmvQgd2nLHnLhDk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
type_eq
|
||||
];
|
||||
|
||||
|
||||
checkInputs = [
|
||||
alcotest
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Type identifiers, useful for runtime type-safe casting/coersions";
|
||||
homepage = "https://github.com/skolemlabs/type_id";
|
||||
changelog = "https://github.com/skolemlabs/type_id/blob/${version}/CHANGES.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ sixstring982 ];
|
||||
};
|
||||
}
|
||||
|
@ -1815,6 +1815,8 @@ let
|
||||
|
||||
type_eq = callPackage ../development/ocaml-modules/type_eq { };
|
||||
|
||||
type_id = callPackage ../development/ocaml-modules/type_id { };
|
||||
|
||||
tyxml = callPackage ../development/ocaml-modules/tyxml { };
|
||||
|
||||
tyxml-lwd = callPackage ../development/ocaml-modules/lwd/tyxml-lwd.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user