Skip to content
Snippets Groups Projects
Verified Commit a9c06445 authored by Maximilian Marx's avatar Maximilian Marx
Browse files

Add gettext and sqlite to devshell

parent 43c95e68
No related branches found
No related tags found
No related merge requests found
Pipeline #117323 passed
...@@ -14,10 +14,11 @@ ...@@ -14,10 +14,11 @@
outputsBuilder = channels: outputsBuilder = channels:
let let
inherit (channels.nixpkgs) system lib; pkgs = channels.nixpkgs;
inherit (pkgs) system lib;
mach-nix = inputs.mach-nix.lib."${system}"; mach-nix = inputs.mach-nix.lib."${system}";
in { in {
devShells.default = channels.nixpkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = [ buildInputs = [
(mach-nix.mkPython { (mach-nix.mkPython {
python = "python37"; python = "python37";
...@@ -28,11 +29,14 @@ ...@@ -28,11 +29,14 @@
]; ];
}) })
(channels.nixpkgs.texlive.combine { (pkgs.texlive.combine {
inherit (channels.nixpkgs.texlive) inherit (pkgs.texlive)
scheme-basic beamer luatex collection-latexrecommended scheme-basic beamer luatex collection-latexrecommended
collection-latexextra collection-fontsextra; collection-latexextra collection-fontsextra;
}) })
pkgs.gettext
pkgs.sqlite
]; ];
}; };
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment