diff --git a/.github/workflows/secret-scanner.yml b/.github/workflows/secret-scanner.yml index b3486fc..2c9877c 100644 --- a/.github/workflows/secret-scanner.yml +++ b/.github/workflows/secret-scanner.yml @@ -17,5 +17,5 @@ jobs: scan: permissions: contents: read - uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@c65436ee3351cd6b0fa14b142938b195efc77586 + uses: hyperpolymath/standards/.github/workflows/secret-scanner-reusable.yml@7fdc2705df74b4e352d2a1cde3e87a5923fdf329 secrets: inherit \ No newline at end of file diff --git a/guix.scm b/guix.scm deleted file mode 100644 index aa3cbd4..0000000 --- a/guix.scm +++ /dev/null @@ -1,27 +0,0 @@ -;; bunsenite - Guix Package Definition -;; Run: guix shell -D -f guix.scm - -(use-modules (guix packages) - (guix gexp) - (guix git-download) - (guix build-system cargo) - ((guix licenses) #:prefix license:) - (gnu packages base)) - -(define-public bunsenite - (package - (name "bunsenite") - (version "1.0.2") - (source (local-file "." "bunsenite-checkout" - #:recursive? #t - #:select? (git-predicate "."))) - (build-system cargo-build-system) - (synopsis "Nickel configuration file parser with multi-language FFI bindings") - (description "Bunsenite provides a Rust core library with a stable C ABI layer (via Zig) -that enables bindings for Deno (JavaScript/TypeScript), ReScript, and WebAssembly -for browser and universal use.") - (home-page "https://github.com/hyperpolymath/bunsenite") - (license license:expat))) - -;; Return package for guix shell -bunsenite