cryptpad-deuxfleurs.nix/deuxfleurs.nix

12 lines
262 B
Nix
Raw Normal View History

2024-04-17 21:48:40 +00:00
{ name ? "deuxfleurs/cryptpad"
, tag ? "nix-latest"
}: let
2024-04-16 10:11:50 +00:00
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
in rec {
2024-04-17 21:48:40 +00:00
cryptpad = pkgs.callPackage ./default.nix {};
2024-04-16 10:11:50 +00:00
docker = pkgs.callPackage ./docker.nix {
inherit cryptpad;
};
}