Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add opinionated template #655

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@
pkgs.appendOverlays extraOverlays;

overlays.default = import ./overlay nixpkgs;

templates.opinionated = {
description =
"Opinionated setup for ocaml development";
path = ./templates/opinionated;
};

templates.default = self.templates.opinionated;
} // flake-utils.lib.eachDefaultSystem (system:
{
legacyPackages = self.makePkgs { inherit system; };
Expand Down
Empty file.
63 changes: 63 additions & 0 deletions templates/opinionated/flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
nixConfig = {
extra-substituters = "https://ocaml.nix-cache.com";
extra-trusted-public-keys = "ocaml.nix-cache.com-1:/xI2h2+56rwFfKyyFVbkJSeGqSIYMC/Je+7XXqGKDIY=";
};

inputs = {
nixpkgs.url = "github:nix-ocaml/nix-overlays";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
nix-filter.url = "github:numtide/nix-filter";
};

outputs = inputs @ { flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.treefmt-nix.flakeModule
];
systems = [ "x86_64-linux" "aarch64-darwin" ];
perSystem =
{ config
, self'
, inputs'
, pkgs
, system
, ...
}: {
treefmt = {
projectRootFile = "flake.nix";
programs = {
alejandra.enable = true;
ocamlformat = {
inherit pkgs;
configFile = ./.ocamlformat;
enable = true;
};
};
};

packages = pkgs.ocamlPackages.callPackage ./nix {
inherit (inputs) nix-filter;
doCheck = true;
};

devShells.default = pkgs.mkShell {
inputsFrom = with self'.packages; [
self'.packages.package
];

packages = with pkgs.ocamlPackages; [
ocaml
dune

ocaml-lsp

ocamlformat
dune-release
odoc
];
};
};
};
}
49 changes: 49 additions & 0 deletions templates/opinionated/nix/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{ pkgs
, stdenv
, lib
, nix-filter
, ocamlPackages
, static ? false
, doCheck
,
}:
with ocamlPackages; rec {
package = buildDunePackage {
pname = "package";
version = "1.0.0";

src = with nix-filter.lib;
filter {
# Root of the project relative to this file
root = ./..;
# If no include is passed, it will include all the paths.
include = [
# Include the "src" path relative to the root.
"src"
"test"
# Include this specific path. The path must be under the root.
../package.opam
../dune-project
];
};

checkInputs = [
# Put test dependencies here
];

propagatedBuildInputs = [
# Put dependencies here
];

buildInputs = [
# Put build-time dependencies here
];

inherit doCheck;

meta = {
description = "Describe your project here";
# license = stdenv.lib.licenses.bsd3;
};
};
}