summaryrefslogtreecommitdiff
path: root/px/packages/tools.scm
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2023-06-25 16:07:34 +0100
committerFranz Geffke <franz@pantherx.org>2023-06-25 16:07:34 +0100
commit54b4056ac571611892c743b65f4c47dc298c49da (patch)
tree36e4a84137d2b9bc9a241cf82563da6114bf6189 /px/packages/tools.scm
initial commit
Diffstat (limited to 'px/packages/tools.scm')
-rw-r--r--px/packages/tools.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/px/packages/tools.scm b/px/packages/tools.scm
new file mode 100644
index 0000000..043e382
--- /dev/null
+++ b/px/packages/tools.scm
@@ -0,0 +1,32 @@
+(define-module (px packages tools)
+ #:use-module (gnu packages guile)
+ #:use-module (gnu packages pkg-config)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
+ #:use-module (guix packages)
+ #:use-module (guix build-system cmake)
+ #:use-module (guix utils))
+
+
+(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)))