depot/web/default.nix

11 lines
261 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
2021-01-19 03:51:22 +00:00
{ pkgs, ... }@args:
{
int = pkgs.copyPathToStore ./int;
logged-out-int = pkgs.copyPathToStore ./logged-out-int;
2021-01-19 03:51:22 +00:00
quotes = import ./quotes args;
2020-12-30 00:51:56 +00:00
}