-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}" "$@" |