summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 19f063e38d4d4743d40a70abda1205968101d237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  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
        ];
      };
    };
}