10 lines
256 B
Nix
10 lines
256 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
(python38.withPackages (ps: with ps; [ pip virtualenv ]))
|
||
|
(texlive.combine { inherit (texlive) scheme-basic IEEEtran collection-fontsrecommended todonotes caption pgfgantt setspace; })
|
||
|
];
|
||
|
}
|
||
|
|