Skip to content

Commit

Permalink
pdsadmin: init at 0.4.67
Browse files Browse the repository at this point in the history
  • Loading branch information
t4ccer committed Nov 8, 2024
1 parent 80c9496 commit ac7f4dc
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pkgs/by-name/pd/pdsadmin/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
stdenvNoCC,
fetchFromGitHub,
lib,
bash,
pds,
}:

stdenvNoCC.mkDerivation (finalAttrs: {
pname = "pdsadmin";
inherit (pds) version src;

patches = [ ./pdsadmin-offline.patch ];

nativeBuildInputs = [ bash ];

buildPhase = ''
patchShebangs . pdsadmin
substituteInPlace pdsadmin.sh \
--replace-fail NIXPKGS_PDSADMIN_ROOT $out
'';

installPhase = ''
runHook preInstall
mkdir -p $out/{bin,lib}
install -Dm755 pdsadmin.sh $out/bin/pdsadmin
install -Dm755 pdsadmin/*.sh $out/lib
runHook postInstall
'';

meta = {
description = "Admin scripts for Bluesky Personal Data Server (PDS)";
homepage = "https://github.com/bluesky-social/pds";
license = with lib.licenses; [
mit
asl20
];
maintainers = with lib.maintainers; [ t4ccer ];
platforms = lib.platforms.unix;
mainProgram = "pdsadmin";
};
})
24 changes: 24 additions & 0 deletions pkgs/by-name/pd/pdsadmin/pdsadmin-offline.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
diff --git a/pdsadmin.sh b/pdsadmin.sh
index 913d2b4..b09c20c 100644
--- a/pdsadmin.sh
+++ b/pdsadmin.sh
@@ -15,16 +15,11 @@ if [[ "${EUID}" -ne 0 ]]; then
exit 1
fi

-# Download the script, if it exists.
-SCRIPT_URL="${PDSADMIN_BASE_URL}/${COMMAND}.sh"
-SCRIPT_FILE="$(mktemp /tmp/pdsadmin.${COMMAND}.XXXXXX)"
+SCRIPT_FILE="NIXPKGS_PDSADMIN_ROOT/lib/${COMMAND}.sh"

-if ! curl --fail --silent --show-error --location --output "${SCRIPT_FILE}" "${SCRIPT_URL}"; then
+if ! [ -f "${SCRIPT_FILE}" ]; then
echo "ERROR: ${COMMAND} not found"
exit 2
fi

-chmod +x "${SCRIPT_FILE}"
-if "${SCRIPT_FILE}" "$@"; then
- rm --force "${SCRIPT_FILE}"
-fi
+"${SCRIPT_FILE}" "$@"

0 comments on commit ac7f4dc

Please sign in to comment.