diff options
Diffstat (limited to 'px/packages/package-management.scm')
-rw-r--r-- | px/packages/package-management.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/px/packages/package-management.scm b/px/packages/package-management.scm index c3b70e1..d57c7c4 100644 --- a/px/packages/package-management.scm +++ b/px/packages/package-management.scm @@ -2,7 +2,10 @@ #:use-module (gnu packages) #:use-module (gnu packages python-build) #:use-module (gnu packages python-xyz) + #:use-module (gnu packages guile) + #:use-module (gnu packages pkg-config) #:use-module (guix build-system python) + #:use-module (guix build-system cmake) #:use-module (guix download) #:use-module (guix packages) #:use-module ((guix licenses) @@ -57,3 +60,26 @@ guix commands into one-liners; for ex. px update apply.") "Unattended upgrades are to be run as root system service or via cron and simply prevent running the upgrade twice before rebooting.") (license license:expat))) + +(define-public guix-tools + (package + (name "guix-tools") + (version "0.1.10") + (source + (origin + (method url-fetch) + (uri (string-append "https://source.pantherx.org/guix-tools_v" version + ".tgz")) + (sha256 + (base32 "0b6z2fx5prkibdqsc2n13v322jcl9h29h9g0r67556h21x8f84n8")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) + (inputs `(("guile-json" ,guile-json-1) + ("guile" ,guile-3.0))) + (native-inputs `(("pkg-config" ,pkg-config))) + (home-page "https://www.pantherx.org/") + (synopsis "PantherX guix tools to automate guix related tasks") + (description "Automate `guix` package manager tasks using scheme scripts. +this tool is developed for PantherX team internal usage.") + (license license:expat))) |