auth dns over atproto

uh maybe dont strip the migrations >w<

+9 -1
+9 -1
flake.nix
··· 18 craneLib = crane.mkLib pkgs; 19 20 commonArgs = { 21 - src = craneLib.cleanCargoSource ./.; 22 23 buildInputs = with pkgs; [ 24 openssl
··· 18 craneLib = crane.mkLib pkgs; 19 20 commonArgs = { 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 + }; 30 31 buildInputs = with pkgs; [ 32 openssl