;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2014, 2015 Andreas Enge ;;; Copyright © 2015, 2016, 2018 Ricardo Wurmus ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2019 Julien Lepiller ;;; Copyright © 2020 Alexandros Theodotou ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (g
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2019-03-08 16:10:35 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2019-03-09 02:33:30 +0100
commita48db08afe3e43c568c49a94d55bf3c93357bb03 (patch)
treee1a2a3b3d38eb81bd8569fc7288959dd5d8b61bd /gnu/build/linux-modules.scm
parent0bd1498fc40820be35125cc0a62482d015b58e9b (diff)
downloadguix-a48db08afe3e43c568c49a94d55bf3c93357bb03.tar.gz
guix-a48db08afe3e43c568c49a94d55bf3c93357bb03.zip
gnu: i3lock-fancy: Don't use unstable tarball.
* gnu/packages/wm.scm (i3lock-fancy)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu/build/linux-modules.scm')
0 files changed, 0 insertions, 0 deletions
ne library, a high-performance, full-featured text search engine.") (license (list asl2.0 lgpl3+)))); either asl or lgpl. (define-public lrdf (package (name "lrdf") (version "0.6.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/swh/LRDF.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "00wzkfb8y0aqd519ypz067cq099dpc89w69zw8ln39vl6f9x2pd4")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'remove-out-of-tree-references (lambda _ ;; remove_test depends on an out-of-tree RDF file (substitute* "examples/Makefile.am" (("instances_test remove_test") "instances_test") (("\\$\\(TESTS\\) remove_test") "$(TESTS)")) #t)) ;; The default bootstrap phase executes autogen.sh, which fails. (replace 'bootstrap (lambda _ (invoke "autoreconf" "-vif") #t))))) (inputs `(("raptor" ,raptor2) ("cyrus-sasl" ,cyrus-sasl) ("zlib" ,zlib))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool) ("pkg-config" ,pkg-config))) (home-page "https://github.com/swh/LRDF") (synopsis "Lightweight RDF library for accessing LADSPA plugin metadata") (description "LRDF is a library to make it easy to manipulate RDF files describing LADSPA plugins. It can also be used for general RDF manipulation. It can read RDF/XLM and N3 files and export N3 files, and it also has a light taxonomic inference capability.") (license gpl2))) (define-public rasqal (package (name "rasqal") (version "0.9.33") (source (origin (method url-fetch) (uri (string-append "http://download.librdf.org/source/" name "-" version ".tar.gz")) (sha256 (base32 "0z6rrwn4jsagvarg8d5zf0j352kjgi33py39jqd29gbhcnncj939")))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl) ("perl-xml-dom" ,perl-xml-dom) ; for the tests ("pkg-config" ,pkg-config))) (inputs `(("libgcrypt" ,libgcrypt) ("libxml2" ,libxml2) ("mpfr" ,mpfr) ("pcre" ,pcre) ("util-linux" ,util-linux))) (propagated-inputs `(("raptor2" ,raptor2))) ; stipulated by rasqal.pc (arguments `(#:parallel-tests? #f ; test failure reported upstream, see ; http://bugs.librdf.org/mantis/view.php?id=571 #:tests? #f)) (home-page "http://librdf.org/rasqal/") (synopsis "RDF query library") (description "Rasqal is a C library that handles Resource Description Framework (RDF) query language syntaxes, query construction and execution of queries returning results as bindings, boolean, RDF graphs/triples or syntaxes. The supported query languages are SPARQL Query 1.0, SPARQL Query 1.1, SPARQL Update 1.1 (no executing) and the Experimental SPARQL extensions (LAQRS). Rasqal can write binding query results in the SPARQL XML, SPARQL JSON, CSV, TSV, HTML, ASCII tables, RDF/XML and Turtle/N3 and read them in SPARQL XML, RDF/XML and Turtle/N3.") (license lgpl2.1+))) ; or any choice of gpl2+ or asl2.0 (define-public redland (package (name "redland") (version "1.0.17") (source (origin (method url-fetch) (uri (string-append "http://download.librdf.org/source/" name "-" version ".tar.gz")) (sha256 (base32 "109n0kp39p966dpiasad2bb7q66rwbcb9avjvimw28chnpvlf66y")))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl) ; needed for installation ("pkg-config" ,pkg-config))) (propagated-inputs `(("rasqal" ,rasqal))) ; in Requires.private field of .pc (inputs `(("bdb" ,bdb))) (home-page "http://librdf.org/") (synopsis "RDF library") (description "The Redland RDF Library (librdf) provides the RDF API and triple stores.") (license lgpl2.1+))) ; or any choice of gpl2+ or asl2.0 (define-public serd (package (name "serd") (version "0.30.2") (source (origin (method url-fetch) (uri (string-append "https://download.drobilla.net/serd-" version ".tar.bz2")) (sha256 (base32 "00kjjgs5a8r72khgpya14scvl3n58wqwl5927y14z03j25q04ccx")))) (build-system waf-build-system) (arguments `(#:tests? #f ; no check target #:phases (modify-phases %standard-phases (add-before 'configure 'set-ldflags (lambda* (#:key outputs #:allow-other-keys) (setenv "LDFLAGS" (string-append "-Wl,-rpath=" (assoc-ref outputs "out") "/lib")) #t))))) (home-page "https://drobilla.net/software/serd/") (synopsis "Library for RDF syntax supporting Turtle and NTriples") (description "Serd is a lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples. Serd is not intended to be a swiss-army knife of RDF syntax, but rather is suited to resource limited or performance critical applications (e.g. converting many gigabytes of NTriples to Turtle), or situations where a simple reader/writer with minimal dependencies is ideal (e.g. in LV2 implementations or embedded applications).") (license isc))) (define-public sord (package (name "sord") (version "0.16.4") (source (origin (method url-fetch) (uri (string-append "https://download.drobilla.net/sord-" version ".tar.bz2")) (sha256 (base32 "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi")))) (build-system waf-build-system) (arguments `(#:tests? #f ; no check target #:phases (modify-phases %standard-phases (add-before 'configure 'set-ldflags (lambda* (#:key outputs #:allow-other-keys) (setenv "LDFLAGS" (string-append "-Wl,-rpath=" (assoc-ref outputs "out") "/lib")) #t))))) (inputs `(("pcre" ,pcre))) (native-inputs `(("pkg-config" ,pkg-config))) (propagated-inputs `(("serd" ,serd))) ; required by sord-0.pc (home-page "https://drobilla.net/software/sord/") (synopsis "C library for storing RDF data in memory") (description "Sord is a lightweight C library for storing RDF data in memory.") (license isc))) (define-public python-rdflib (package (name "python-rdflib") (version "4.2.2") (source (origin (method url-fetch) (uri (pypi-uri "rdflib" version)) (sha256 (base32 "0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs")))) (build-system python-build-system) (arguments '(;; FIXME: Three test failures. Should be fixed next release. #:tests? #f)) ;; #:phases ;; (modify-phases %standard-phases ;; (replace 'check ;; (lambda _ ;; ;; Run tests from the build directory so python3 only ;; ;; sees the installed 2to3 version. ;; (invoke "nosetests" "--where=./build/src")))))) (native-inputs `(("python-nose" ,python-nose))) (propagated-inputs `(("python-html5lib" ,python-html5lib) ("python-isodate" ,python-isodate) ("python-pyparsing" ,python-pyparsing))) (home-page "https://github.com/RDFLib/rdflib") (synopsis "Python RDF library") (description "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.") (license (non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) (define-public python2-rdflib (package-with-python2 python-rdflib))