summaryrefslogtreecommitdiff
path: root/flake.nix
blob: fc2f16884db18e3506d273a24bab888306020af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  description = "walint: workadventure map linting";

  inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-22.05";

  outputs = { self, nixpkgs }:
  {
    defaultPackage.x86_64-linux = import ./default.nix { 
      nixpkgs = import nixpkgs { system = "x86_64-linux"; }; 
    };
  };
}