summaryrefslogtreecommitdiff
path: root/guix.scm
blob: 1ef070d05aaae5c389053e10f3242298687dee46 (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
(use-modules
  (guix packages)
  ((guix licenses) #:prefix license:)
  (guix download)
  (guix build-system gnu)
  (gnu packages)
  (gnu packages autotools)
  (gnu packages guile)
  (gnu packages guile-xyz)
  (gnu packages pkg-config)
  (gnu packages texinfo))

(package
  (name "ldp")
  (version "UNRELEASED")
  (source "./ldp-UNRELEASED.tar.gz")
  (build-system gnu-build-system)
  (arguments `())
  (native-inputs
    `(("autoconf" ,autoconf)
      ("automake" ,automake)
      ("pkg-config" ,pkg-config)
      ("texinfo" ,texinfo)))
  (inputs `(("guile" ,guile-3.0)))
  (propagated-inputs `(("guile-rdf" ,guile-rdf)))
  (synopsis
    "Implementation of the linked data platform specification")
  (description
    "Linked data platform is a standard for interoperable web architecture.")
  (home-page "https://guile-ldp.planete-kraus.eu")
  (license license:gpl3+))