guix-kakafarm-channel

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

commit 0a6d5c1945031733fb25f4198f6129613728c5f3
parent 2722b53b556b6d7514f77f2a53ae1660c1e727ce
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Mon, 11 Dec 2023 20:27:15 +0200

Remove non-working package.

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

diff --git a/kakafarm/packages/haskell-apps.scm b/kakafarm/packages/haskell-apps.scm @@ -1,53 +0,0 @@ -(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