projet-fin-etude-rapport/flake.nix

18 lines
453 B
Nix
Raw Normal View History

2023-06-06 18:47:56 +00:00
{
description = "Biblio proj long";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
2023-08-23 14:58:04 +00:00
buildInputs = with pkgs; [ texlive.combined.scheme-full nodejs ];
2023-06-06 18:47:56 +00:00
};
});
}