summaryrefslogtreecommitdiff
path: root/packages/codelite.scm
blob: 8781e6d2a2f622c7c9c09fc330c8a91a36671bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(define-module (gnu packages codelite)
               #:use-module (guix packages)
               #:use-module (guix git-download)
               #:use-module (guix download)
               #:use-module (guix build-system cmake)
               #:use-module (gnu packages sqlite)
               #:use-module (gnu packages llvm)
               #:use-module (gnu packages gtk)
               #:use-module (gnu packages wxwidgets)
               #:use-module (gnu packages flex)
               #:use-module (gnu packages ssh)
               #:use-module ((guix licenses) #:prefix license:)
               )


(define-public codelite
               (package
                 (name "codelite")
                 (version "2022-03-11")
                 (source (origin
                           (method git-fetch)
                           (uri (git-reference
                                  (url "https://github.com/eranif/codelite")
                                  (commit "0d35c63ff1e5d12e824963949e37ffbc8464d497")))
                           (sha256
                             (base32 "0kllfqqbb82l0cbya7d5pyi2f938fbw0acy3arxc8nhwngmb9rfj"))))
                 (build-system cmake-build-system)
                 (inputs
                  (list
                     sqlite
                     clang
                     gtk+
                     wxwidgets
                     flex
                     libssh
                     ))
                 (synopsis "A Free, open source, cross platform C,C++,PHP and Node.js IDE")
                 (description "CodeLite is a free, open source, cross platform IDE specialized in C, C++, PHP and JavaScript (mainly for backend developers using Node.js) programming languages, which runs best on all major platforms (Windows, macOS and Linux).")
                 (license (list
                            license:gpl2
                                ))
                 (home-page "https://codelite.org")
                 ))
codelite