tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ocaml-fontconfig: init at 20131103
Vincent Laporte
10 years ago
2fe151a8
80b26e40
+25
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
fontconfig
default.nix
top-level
all-packages.nix
+21
pkgs/development/ocaml-modules/fontconfig/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, pkgconfig, fontconfig, ocaml }:
2
2
+
3
3
+
stdenv.mkDerivation {
4
4
+
name = "ocaml-fontconfig-20131103";
5
5
+
src = fetchFromGitHub {
6
6
+
owner = "flh";
7
7
+
repo = "ocaml-fontconfig";
8
8
+
rev = "42daf1697ffcee9c89ee4be3103b6427f7a7b7e5";
9
9
+
sha256 = "1fw6bzydmnyh2g4x35mcbg0hypnxqhynivk4nakcsx7prr8zr3yh";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ ocaml pkgconfig fontconfig ];
13
13
+
makeFlags = "OCAML_STDLIB_DIR=$(out)/lib/ocaml/${stdenv.lib.getVersion ocaml}/site-lib/ OCAML_HAVE_OCAMLOPT=yes";
14
14
+
15
15
+
meta = {
16
16
+
description = "Fontconfig bindings for OCaml";
17
17
+
license = stdenv.lib.licenses.gpl2Plus;
18
18
+
platforms = ocaml.meta.platforms;
19
19
+
maintainers = with stdenv.lib.maintainers; [ vbgl ];
20
20
+
};
21
21
+
}
+4
pkgs/top-level/all-packages.nix
···
4369
4369
4370
4370
fix = callPackage ../development/ocaml-modules/fix { };
4371
4371
4372
4372
+
fontconfig = callPackage ../development/ocaml-modules/fontconfig {
4373
4373
+
inherit (pkgs) fontconfig;
4374
4374
+
};
4375
4375
+
4372
4376
functory = callPackage ../development/ocaml-modules/functory { };
4373
4377
4374
4378
herelib = callPackage ../development/ocaml-modules/herelib { };