diff options
author | Franz Geffke <franz@pantherx.org> | 2024-03-30 16:39:51 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2024-03-30 16:39:51 +0000 |
commit | 20c3eb56d2cca96c4b87c1d4379e61ed9453d0d1 (patch) | |
tree | a1c789191f94b6cfcc0007d91a843d7d5a5039ea /px/packages/desktop-tools.scm | |
parent | 36117766d9db64f6332c40eeaca0a46ecbc592cc (diff) |
px-terminal-launcher: move to desktop-tools module
Diffstat (limited to 'px/packages/desktop-tools.scm')
-rw-r--r-- | px/packages/desktop-tools.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/px/packages/desktop-tools.scm b/px/packages/desktop-tools.scm index 583d8c1..34a0452 100644 --- a/px/packages/desktop-tools.scm +++ b/px/packages/desktop-tools.scm @@ -350,3 +350,27 @@ brand icons for easy, scalable vector graphics on websites and beyond.") (description "Qt-based tray application") (license license:gpl2+))) +(define-public px-terminal-launcher + (package + (name "px-terminal-launcher") + (version "v0.2.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://source.pantherx.org/" name "_" version + ".tgz")) + (sha256 + (base32 "0fqlzbipnddn9cd0amjn9py7qzwnk5ir674lshpf7rsnv7fasalw")))) + (build-system qt-build-system) + (native-inputs (list qttools-5 pkg-config extra-cmake-modules)) + (inputs (list capnproto-0.9 + qtbase-5 + qtsvg-5 + qtcharts + px-auth-library-cpp + networkmanager-qt)) + (propagated-inputs (list px-icons)) + (home-page "https://www.pantherx.dev") + (synopsis "PantherX Terminal Launcher") + (description "PantherX Terminal Launcher") + (license license:expat)))
\ No newline at end of file |