locimend/flake.nix

12 lines
367 B
Nix
Raw Normal View History

2021-10-19 11:34:44 +02:00
{
description =
"locimend is a tool that corrects DNA sequencing errors using Deep Learning";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in { devShell = import ./shell.nix { inherit pkgs; }; });
}