Guest User

Untitled

a guest
May 20th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.21 KB | None | 0 0
  1. (define-module (guix packages haxe)
  2.   #:use-module (guix packages)
  3.   #:use-module (guix download)
  4.   #:use-module (guix build-system gnu)
  5.   #:use-module (guix licenses)
  6.   #:use-module (guix packages ocaml)
  7.   #:use-module (guix packages camlp4)
  8.   #:use-module (guix packages zlib)
  9.   #:use-module (guix packages neko)
  10.   #:use-module (guix packages pcre))
  11.  
  12. (define-public haxe-3.4.2
  13.   (package
  14.     (name "haxe")
  15.     (version "3.4.2")
  16.     (source (origin
  17.               (method url-fetch)
  18.               (uri (string-append "https://github.com/HaxeFoundation/haxe/archive/" version
  19.                                   ".tar.gz"))
  20.               (sha256
  21.                 (base32
  22.                   "0bv425dxmfllafx6zmrax5vvcqbnv0gkbymjdfncgqk4avrv0jsp"))))
  23.     (build-system gnu-build-system)
  24.     (native-inputs
  25.       `(("camlp4" ,camlp4)
  26.         ("pcre" ,pcre)
  27.         ("zlib" ,zlib)))
  28.     (inputs `(("ocaml" ,ocaml)
  29.               ("neko" ,neko)))
  30.     (synopsis "Haxe - The Cross-Platform Toolkit")
  31.     (description "Haxe is an open source toolkit that allows you to easily build cross-platform tools and applications that target many mainstream platforms.")
  32.     (home-page "https://haxe.org/")
  33.     (license gpl2+)))
Add Comment
Please, Sign In to add comment