guix-kakafarm-channel

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ed2b9ec803fa6b815f8c3baaaea7386b1520d443
parent db912b229356a854d5b3ccb982f2bf3b4d8a47cb
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Tue,  5 Dec 2023 23:04:09 +0200

Non-working simplex-chat package.

Diffstat:
Akakafarm/packages/haskell-apps.scm | 53+++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+), 0 deletions(-)

diff --git a/kakafarm/packages/haskell-apps.scm b/kakafarm/packages/haskell-apps.scm @@ -0,0 +1,53 @@ +(define-module (kakafarm packages haskell-apps)) + +(use-modules (guix packages) + (guix build-system haskell) + (guix git-download) + ((guix licenses) #:prefix license:) + (guix gexp) + (gnu packages) + (gnu packages base) + (gnu packages bash) + (gnu packages compression) + (gnu packages curl) + (gnu packages haskell) + (gnu packages haskell-apps) + (gnu packages multiprecision) + (gnu packages tls) + (gnu packages xdisorg) + (gnu packages speech) + ) + +(define-public simplex-chat + (let ((git-repository-url "https://github.com/simplex-chat/simplex-chat.git")) + (package + (name "simplex-chat") + (version "5.4.0") + (source + (origin + (uri (git-reference + (url git-repository-url) + (commit "f31054de4ffce6fed8cd5c3e088a363de02a2d0d"))) + (method git-fetch) + (file-name (git-file-name name version)) + (sha256 (base32 "03b0sqiknhgzys3yb756xkibmnf4qjq60azyfzwzh5a8k2avbam1")))) +#; + (inputs + (list + gmp + curl + bash + cabal-install + coreutils + openssl + zlib + ghc)) + (build-system haskell-build-system) + (home-page git-repository-url) + (synopsis "Privacy chat") + (description "Privacy chat") + (license license:agpl3+)))) + +;; This allows you to run guix shell -f example.scm. +;; Remove this line if you just want to define a package. +simplex-chat