-
Notifications
You must be signed in to change notification settings - Fork 7
/
flake.nix
44 lines (41 loc) · 1.33 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
description = "doi2bib Nix Flake";
inputs.nix-filter.url = "github:numtide/nix-filter";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.url = "github:nix-ocaml/nix-overlays";
outputs = { self, nixpkgs, flake-utils, nix-filter }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages."${system}".extend (self: super: {
ocamlPackages = super.ocaml-ng.ocamlPackages_4_14;
});
native = pkgs.callPackage ./nix {
nix-filter = nix-filter.lib;
};
in
{
packages = {
inherit native;
musl =
let
pkgs' = pkgs.pkgsCross.musl64;
in
pkgs'.lib.callPackageWith pkgs' ./nix {
static = true;
nix-filter = nix-filter.lib;
};
arm64-musl =
let
pkgs' = pkgs.pkgsCross.aarch64-multiplatform-musl;
in
(pkgs'.lib.callPackageWith pkgs' ./nix {
static = true;
nix-filter = nix-filter.lib;
crossName = "aarch64";
}).overrideAttrs (o: {
OCAMLFIND_CONF = pkgs'.ocamlPackages.findlib.makeFindlibConf native o;
});
};
});
}