summaryrefslogtreecommitdiff
path: root/packages/codelite.scm
blob: 4ad05cca183d347b8a03882cbbfe7e704d524690 (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
(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 wxwidgets)
               #:use-module (gnu packages flex)
               #:use-module (gnu packages ssh)
               #:use-module ((guix licenses) #:prefix license:)
               )


(define-public codelite
               (package
                 (name "codelite")
                 (version "2021-03-09")
                 (source (origin
                           (method git-fetch)
                           (uri (git-reference
                                  (url "https://github.com/eranif/codelite")
                                  (commit "0b6fd5a45822b4f27349853bc24e5452a4fcd088")))
                           (sha256
                             (base32 "1jk0wqqilldnvaqflma0wr0gw35d58sys26jzrsnr4a53x4idka2"))))
                 (build-system cmake-build-system)
                 (inputs
                   `(
                     ("sqlite" ,sqlite)
                     ("clang" ,clang)
                     ("wxwidgets" ,wxwidgets)
                     ("flex" ,flex)
                     ("libssh" ,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