forked from Deuxfleurs/nixcfg
13 lines
284 B
Nix
13 lines
284 B
Nix
|
{ name ? "deuxfleurs/cryptpad"
|
||
|
, tag ? "nix-latest"
|
||
|
}: let
|
||
|
sources = import ./nix/sources.nix;
|
||
|
pkgs = import sources.nixpkgs {};
|
||
|
in rec {
|
||
|
cryptpad = pkgs.callPackage ./default.nix {};
|
||
|
docker = pkgs.callPackage ./docker.nix {
|
||
|
inherit name tag;
|
||
|
inherit cryptpad;
|
||
|
};
|
||
|
}
|