{ description = "Project presentation for Finite Automata and Formal Languages"; outputs = { self, nixpkgs }: let pkgs = import nixpkgs { system = "x86_64-linux"; }; in with pkgs; { defaultPackage.x86_64-linux = stdenv.mkDerivation { name = "fafl"; src = ./.; buildInputs = [ texlive.combined.scheme-full gnumake ]; }; }; }