lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.bitv: init at 1.3

bitv is a bit vector library for OCaml.

Homepage: https://github.com/backtracking/bitv

authored by

Vincent Laporte and committed by
Vincent Laporte
2aeafe7e fd2f2bbe

+29
+27
pkgs/development/ocaml-modules/bitv/default.nix
··· 1 + { stdenv, fetchzip, autoreconfHook, which, ocaml, findlib }: 2 + 3 + if !stdenv.lib.versionAtLeast ocaml.version "4.02" 4 + then throw "bitv is not available for OCaml ${ocaml.version}" 5 + else 6 + 7 + stdenv.mkDerivation rec { 8 + name = "ocaml${ocaml.version}-bitv-${version}"; 9 + version = "1.3"; 10 + 11 + src = fetchzip { 12 + url = "https://github.com/backtracking/bitv/archive/${version}.tar.gz"; 13 + sha256 = "0vkh1w9fpi5m1sgiqg6r38j3fqglhdajmbyiyr91113lrpljm75i"; 14 + }; 15 + 16 + buildInputs = [ autoreconfHook which ocaml findlib ]; 17 + 18 + createFindlibDestdir = true; 19 + 20 + meta = { 21 + description = "A bit vector library for OCaml"; 22 + license = stdenv.lib.licenses.lgpl21; 23 + homepage = "https://github.com/backtracking/bitv"; 24 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 25 + inherit (ocaml.meta) platforms; 26 + }; 27 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 60 60 61 61 bitstring = callPackage ../development/ocaml-modules/bitstring { }; 62 62 63 + bitv = callPackage ../development/ocaml-modules/bitv { }; 64 + 63 65 bolt = callPackage ../development/ocaml-modules/bolt { }; 64 66 65 67 bos = callPackage ../development/ocaml-modules/bos { };