fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, cmdliner , topkg, uchar }:
2let
3 pname = "uutf";
4 webpage = "http://erratique.ch/software/${pname}";
5in
6
7stdenv.mkDerivation rec {
8 name = "ocaml${ocaml.version}-${pname}-${version}";
9 version = "1.0.1";
10
11 src = fetchurl {
12 url = "${webpage}/releases/${pname}-${version}.tbz";
13 sha256 = "1gp96dcggq7s84934vimxh89caaxa77lqiff1yywbwkilkkjcfqj";
14 };
15
16 buildInputs = [ ocaml findlib ocamlbuild topkg cmdliner ];
17 propagatedBuildInputs = [ uchar ];
18
19 inherit (topkg) buildPhase installPhase;
20
21 meta = with stdenv.lib; {
22 description = "Non-blocking streaming Unicode codec for OCaml";
23 homepage = "${webpage}";
24 platforms = ocaml.meta.platforms or [];
25 license = licenses.bsd3;
26 maintainers = [ maintainers.vbgl ];
27 };
28}