push changes
This commit is contained in:
parent
6ea10852a9
commit
9aa6f3fdbe
20 changed files with 573 additions and 277 deletions
16
packages/atproto-pds/default.nix
Normal file
16
packages/atproto-pds/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
inputs,
|
||||
fetchFromGitHub,
|
||||
pkgs,
|
||||
}: let
|
||||
pds = fetchFromGitHub {
|
||||
owner = "bluesky-social";
|
||||
repo = "pds";
|
||||
rev = "main";
|
||||
hash = "sha256-dEB5u++Zx+F4TH5q44AF/tuwAhLEyYT+U5/18viT4sw=";
|
||||
};
|
||||
in
|
||||
inputs.pnpm2nix.packages.${pkgs.system}.mkPnpmPackage {
|
||||
src = "${pds}/service";
|
||||
extraBuildInputs = [pkgs.sqlite];
|
||||
}
|
||||
|
|
@ -17,7 +17,7 @@ writeShellScriptBin "enc" ''
|
|||
|
||||
# Create a temporary file
|
||||
temp_file=$(${coreutils}/bin/mktemp)
|
||||
trap "${coreutils}/bin/rm -f $temp_file" EXIT
|
||||
trap "${coreutils}/bin/rm -f $temp_file $temp_file.asc" EXIT
|
||||
|
||||
# Create recipient arguments for gpg
|
||||
recipients=()
|
||||
|
|
|
|||
|
|
@ -170,13 +170,13 @@
|
|||
in
|
||||
buildStdenv.mkDerivation (finalAttrs: {
|
||||
pname = "zen-browser-unwrapped";
|
||||
version = "1.0.1-t.17";
|
||||
version = "1.0.1-a.19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zen-browser";
|
||||
repo = "desktop";
|
||||
rev = "715b6df2fb8171336adc8712668a5e8458f7749b";
|
||||
hash = "sha256-0+x2XoZyMdzP1beJvUSeM/QnFyQ+FSuGIatHh1mtBaw=";
|
||||
rev = "0e02cb14ecd72f5bc90a0e1093731409ab043578";
|
||||
hash = "sha256-+eehLsnQoWapkSKo3zWFxaz6N68BryK1XsmSk48zbbk=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue