cryptpad-deuxfleurs.nix/deuxfleurs.nix

13 lines
284 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 {
2024-04-18 13:32:12 +00:00
inherit name tag;
2024-04-16 10:11:50 +00:00
inherit cryptpad;
};
}