From 7f1efc421f677bafa61ce3244e1e402029892531 Mon Sep 17 00:00:00 2001 From: Nathan Christopher McRae Date: Sat, 12 Sep 2026 13:27:20 -0700 Subject: [PATCH] Remove seal-c package To see if it's the one causing the pull issues --- nathanmcrae-key_oz.key2 | 14 ++++++++++++++ nathanmcrae/packages.scm | 28 ---------------------------- 2 files changed, 14 insertions(+), 28 deletions(-) create mode 100644 nathanmcrae-key_oz.key2 diff --git a/nathanmcrae-key_oz.key2 b/nathanmcrae-key_oz.key2 new file mode 100644 index 0000000..da6f46e --- /dev/null +++ b/nathanmcrae-key_oz.key2 @@ -0,0 +1,14 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mDMEao0gxBYJKwYBBAHaRw8BAQdAdfh8pZ1KRMV1RmCOBST+WuUD+0g1pK/E2WQM +2loQ/oG0Lk5hdGhhbiBDaHJpc3RvcGhlciBNY1JhZSA8bWVAbmF0aGFubWNyYWUu +bmFtZT6IlgQTFgoAPhYhBE78U9NcboOQICsBDHs12o6SsfOvBQJqjSDEAhsDBQkF +o5qABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEHs12o6SsfOvbYcBALdC3bbj +SbEzLcZmseLqH7qu7PSa5Het6TRkSXVYF4MoAQCbUSuI+D2wn4SW61r/yxkYiXR2 +ukcyKewMoecfOyr5Brg4BGqNIMQSCisGAQQBl1UBBQEBB0DXYmJIRKJJ2JrJ4zwj +HJDIxq+TrKIeLO0DmpU3/XEUKgMBCAeIfgQYFgoAJhYhBE78U9NcboOQICsBDHs1 +2o6SsfOvBQJqjSDEAhsMBQkFo5qAAAoJEHs12o6SsfOv0J0A/0uYizUoj29+9H/6 +vP1uivfQmScQo+O92R6DpW+pLcdZAQCqooIFlxQ2rlVAm63mQW0QUT4AP7H87GKF +TiMlaicSCQ== +=k8I+ +-----END PGP PUBLIC KEY BLOCK----- diff --git a/nathanmcrae/packages.scm b/nathanmcrae/packages.scm index feab899..fac2beb 100644 --- a/nathanmcrae/packages.scm +++ b/nathanmcrae/packages.scm @@ -74,31 +74,3 @@ not permute arguments. It is intended as a replacement for Go's flag package.") (description "passphrase2pgp generates, in OpenPGP format, an EdDSA signing key and Curve25519 encryption subkey entirely from a passphrase, essentially allowing you to store a backup of your PGP keys in your brain. At any time you can re-run the tool and re-enter the passphrase to reproduce the original keys.") (license unlicense) (home-page "https://github.com/skeeto/passphrase2pgp"))) - -(define-public seal-c - (package - (name "seal-c") - (version "0.0.7-beta") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hackerfactor/SEAL-C.git") - (commit "0.0.7-beta"))) - (file-name (git-file-name name version)) - (sha256 (base32 "1ipinbc1r2a5srw9fi0nhxqj6pp0vf6kcgwczsqf1g0f4kmw99nd")))) - (build-system gnu-build-system) - (arguments (list #:tests? #f - #:phases #~(modify-phases %standard-phases - (delete 'configure) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((outdir (assoc-ref outputs "out")) - (bindir (string-append outdir "/bin"))) - (install-file "bin/sealtool" bindir))))))) - (native-inputs (list gcc-toolchain)) - (inputs (list curl (specification->package "openssl@3.5.5"))) - (home-page "https://github.com/hackerfactor/SEAL-C/") - (synopsis "Secure Evidence Attribution Label (SEAL) implementation in C") - (description "SEAL is an open solution for assigning attribution with authentication to media. It can be easily applied to pictures, audio files, videos, documents, and other file formats.") - (license ogl-psi1.0)))