about summary refs log tree commit diff
path: root/flake.nix
blob: e22b92e6e67cea91211007781ee62fa44e2bf363 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  description = "cgit-magenta, maintained by Rory&";

  inputs = {
    nixpkgs = {
      url = "github:NixOS/nixpkgs/nixos-unstable";
    };

    # Base modules
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs =
    inputs:
    with inputs;
    (
    flake-utils.lib.eachSystem flake-utils.lib.allSystems (
      system:
      let
        pkgs = import nixpkgs { inherit system; };
      in
      {
        packages.default = (
          pkgs.callPackage ./default.nix { }
        );
      }
    ));
}