forked from yotann/ncsa-mosaic
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathguix.scm
35 lines (32 loc) · 1019 Bytes
/
guix.scm
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
(use-modules ((guix licenses)
#:prefix license:)
(guix gexp)
(guix packages)
(gnu packages image)
(gnu packages lesstif)
(gnu packages xorg)
(gnu packages pkg-config)
(guix build-system meson))
(define %source-dir
(dirname (current-filename)))
(define-public meson
(package
(name "Meson")
(version "2.7")
(source (local-file %source-dir
#:recursive? #t))
(build-system meson-build-system)
(native-inputs (list pkg-config))
(inputs (list libjpeg
libjpeg-turbo
libpng
libxmu
libxpm
libxt
xorgproto
motif))
(home-page "http://www.ncsa.illinois.edu/research/project-highlights/ncsa-mosaic/")
(synopsis "Web browser from the 90s")
(description "MCSA Mosaic is a web browser from the 90s.")
(license license:expat)))
meson