Skip to content

Commit

Permalink
Nix: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
metame committed Feb 27, 2024
1 parent 736ab26 commit 6c06078
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@
name = "colors";
version = "0.0.1";
in
{
devShells = {
default = mkShell {
buildInputs = [ ocamlPackages.utop ];
inputsFrom = [ self'.packages.default ];
{
devShells = {
default = mkShell {
buildInputs = [ ocamlPackages.utop ];
inputsFrom = [ self'.packages.default ];
};
};
};

packages = {
default = buildDunePackage {
inherit version;
pname = name;
propagatedBuildInputs = with ocamlPackages; [
(mdx.override {
inherit logs;
})
];
src = ./.;
packages = {
default = buildDunePackage {
inherit version;
pname = name;
propagatedBuildInputs = with ocamlPackages; [
(mdx.override {
inherit logs;
})
];
src = ./.;
};
};
};
};
};
};
}

0 comments on commit 6c06078

Please sign in to comment.