This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
27
unikernel/duniverse/httpun/flake.nix
Normal file
27
unikernel/duniverse/httpun/flake.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
description = "HTTP/un 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:anmonteiro/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_5_1;
|
||||
});
|
||||
in
|
||||
rec {
|
||||
packages = pkgs.callPackage ./nix { nix-filter = nix-filter.lib; };
|
||||
defaultPackage = packages.httpun;
|
||||
devShells = {
|
||||
default = pkgs.callPackage ./nix/shell.nix { inherit packages; };
|
||||
release = pkgs.callPackage ./nix/shell.nix {
|
||||
inherit packages;
|
||||
release-mode = true;
|
||||
};
|
||||
};
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue