auth dns over atproto

uh maybe dont strip the migrations >w<

+9 -1
+9 -1
flake.nix
··· 18 18 craneLib = crane.mkLib pkgs; 19 19 20 20 commonArgs = { 21 - src = craneLib.cleanCargoSource ./.; 21 + src = let 22 + sqlFilter = path: _type: builtins.match ".*\.sql$" path != null; 23 + sqlOrCargo = path: type: 24 + (sqlFilter path type) || (craneLib.filterCargoSources path type); 25 + in 26 + pkgs.lib.cleanSourceWith { 27 + src = ./.; 28 + filter = sqlOrCargo; 29 + }; 22 30 23 31 buildInputs = with pkgs; [ 24 32 openssl