Skip to content

Commit

Permalink
✅ Pass nix build
Browse files Browse the repository at this point in the history
  • Loading branch information
H1rono committed Feb 23, 2024
1 parent a79579d commit f39097d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@
sha256 = "sha256-e4mlaJehWBymYxJGgnbuCObVlqMlQSilZ8FljG9zPHY=";
};
craneLib = (crane.mkLib pkgs).overrideToolchain toolchain;
src = craneLib.cleanCargoSource (craneLib.path ./.);

markdownFilter = path: _type: builtins.match ".*md$" path != null;
src = lib.cleanSourceWith {
src = craneLib.path ./.;
filter = path: type: (markdownFilter path type) || (craneLib.filterCargoSources path type);
};

teahook-transpiler = teahook-rs.packages.${system}.goBuild;

Expand Down

0 comments on commit f39097d

Please sign in to comment.