2013-08-24 17:23:17 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2017-01-12 10:12:07 +01:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
2017-01-01 10:42:46 +01:00
|
|
|
|
;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net>
|
2013-08-24 17:23:17 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages package-management)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2014-06-27 23:06:55 +02:00
|
|
|
|
#:use-module (guix git-download)
|
2016-06-19 22:26:59 +02:00
|
|
|
|
#:use-module (guix gexp)
|
2014-06-27 23:06:55 +02:00
|
|
|
|
#:use-module (guix utils)
|
2013-08-24 17:23:17 +02:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-10-26 00:13:03 +01:00
|
|
|
|
#:use-module (guix build-system python)
|
|
|
|
|
#:use-module ((guix licenses) #:select (gpl2+ gpl3+ lgpl2.1+ asl2.0))
|
2013-12-11 13:55:17 +01:00
|
|
|
|
#:use-module (gnu packages)
|
2013-08-24 17:23:17 +02:00
|
|
|
|
#:use-module (gnu packages guile)
|
2015-10-26 00:13:03 +01:00
|
|
|
|
#:use-module (gnu packages file)
|
|
|
|
|
#:use-module (gnu packages backup)
|
2015-04-20 15:50:59 +02:00
|
|
|
|
#:use-module (gnu packages compression)
|
2013-08-24 17:23:17 +02:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
gnu: Consolidate databases in (gnu packages databases).
* gnu/packages/databases.scm: New file, with the contents of the
following deleted files.
* gnu/packages/mysql.scm, gnu/packages/postgresql.scm,
gnu/packages/recutils.scm, gnu/packages/sqlite.scm,
gnu/packages/bdb.scm: Remove.
* gnu-system.am (GNU_SYSTEM_MODULES): Adjust accordingly.
* gnu/packages/apl.scm, gnu/packages/dc.scm, gnu/packages/games.scm,
gnu/packages/gnunet.scm, gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/mpd.scm, gnu/packages/nvi.scm, gnu/packages/openldap.scm,
gnu/packages/package-management.scm, gnu/packages/python.scm,
gnu/packages/qt.scm, gnu/packages/rdf.scm,
gnu/packages/version-control.scm: Adjust to new module name.
2014-09-08 17:48:03 +02:00
|
|
|
|
#:use-module (gnu packages databases)
|
2014-06-27 23:06:55 +02:00
|
|
|
|
#:use-module (gnu packages graphviz)
|
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
|
#:use-module (gnu packages gettext)
|
2014-09-28 01:04:18 +02:00
|
|
|
|
#:use-module (gnu packages texinfo)
|
2015-10-26 00:13:03 +01:00
|
|
|
|
#:use-module (gnu packages nettle)
|
2014-09-28 01:04:18 +02:00
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
|
#:use-module (gnu packages curl)
|
|
|
|
|
#:use-module (gnu packages web)
|
2015-06-11 23:10:26 +02:00
|
|
|
|
#:use-module (gnu packages man)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 21:41:22 +02:00
|
|
|
|
#:use-module (gnu packages bdw-gc)
|
2017-01-01 10:42:46 +01:00
|
|
|
|
#:use-module (gnu packages patchutils)
|
2015-10-26 00:13:03 +01:00
|
|
|
|
#:use-module (gnu packages python)
|
|
|
|
|
#:use-module (gnu packages popt)
|
|
|
|
|
#:use-module (gnu packages gnuzilla)
|
|
|
|
|
#:use-module (gnu packages cpio)
|
2016-06-19 22:26:59 +02:00
|
|
|
|
#:use-module (gnu packages tls)
|
2016-11-28 20:31:22 +01:00
|
|
|
|
#:use-module (gnu packages ssh)
|
2017-01-01 10:42:46 +01:00
|
|
|
|
#:use-module (gnu packages vim)
|
2016-06-19 22:26:59 +02:00
|
|
|
|
#:use-module (ice-9 match))
|
2013-08-24 17:23:17 +02:00
|
|
|
|
|
2015-01-27 10:17:28 +01:00
|
|
|
|
(define (boot-guile-uri arch)
|
|
|
|
|
"Return the URI for the bootstrap Guile tarball for ARCH."
|
|
|
|
|
(if (string=? "armhf" arch)
|
|
|
|
|
(string-append "http://alpha.gnu.org/gnu/guix/bootstrap/"
|
|
|
|
|
arch "-linux"
|
|
|
|
|
"/20150101/guile-2.0.11.tar.xz")
|
|
|
|
|
(string-append "http://alpha.gnu.org/gnu/guix/bootstrap/"
|
|
|
|
|
arch "-linux"
|
|
|
|
|
"/20131110/guile-2.0.9.tar.xz")))
|
|
|
|
|
|
2016-12-20 17:30:25 +01:00
|
|
|
|
(define-public guix-0.12.0
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(package
|
|
|
|
|
(name "guix")
|
2016-12-20 17:30:25 +01:00
|
|
|
|
(version "0.12.0")
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "ftp://alpha.gnu.org/gnu/guix/guix-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-12-20 17:30:25 +01:00
|
|
|
|
"1jgy5mlygmhxdqhrp6vr8w83ndcm5mk64xfravr8l2d7hq8y40b2"))))
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags (list
|
2013-09-24 22:37:51 +02:00
|
|
|
|
"--localstatedir=/var"
|
2014-06-04 16:01:53 +02:00
|
|
|
|
"--sysconfdir=/etc"
|
2015-04-21 17:43:57 +02:00
|
|
|
|
(string-append "--with-bash-completion-dir="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/etc/bash_completion.d")
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(string-append "--with-libgcrypt-prefix="
|
|
|
|
|
(assoc-ref %build-inputs
|
|
|
|
|
"libgcrypt")))
|
2015-11-03 09:37:52 +01:00
|
|
|
|
#:parallel-tests? #f ;work around <http://bugs.gnu.org/21097>
|
2015-06-13 18:32:35 +02:00
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before
|
|
|
|
|
'configure 'copy-bootstrap-guile
|
|
|
|
|
(lambda* (#:key system inputs #:allow-other-keys)
|
|
|
|
|
(define (boot-guile-version arch)
|
|
|
|
|
(if (string=? "armhf" arch)
|
|
|
|
|
"2.0.11"
|
|
|
|
|
"2.0.9"))
|
2015-01-27 10:17:28 +01:00
|
|
|
|
|
2015-06-13 18:32:35 +02:00
|
|
|
|
(define (copy arch)
|
|
|
|
|
(let ((guile (assoc-ref inputs
|
|
|
|
|
(string-append "boot-guile/"
|
|
|
|
|
arch)))
|
|
|
|
|
(target (string-append "gnu/packages/bootstrap/"
|
|
|
|
|
arch "-linux/"
|
|
|
|
|
"/guile-"
|
|
|
|
|
(boot-guile-version arch)
|
|
|
|
|
".tar.xz")))
|
|
|
|
|
(copy-file guile target)))
|
2013-08-24 17:23:17 +02:00
|
|
|
|
|
2015-06-13 18:32:35 +02:00
|
|
|
|
(copy "i686")
|
|
|
|
|
(copy "x86_64")
|
|
|
|
|
(copy "mips64el")
|
|
|
|
|
(copy "armhf")
|
2015-06-13 19:31:24 +02:00
|
|
|
|
#t))
|
2015-07-21 23:14:39 +02:00
|
|
|
|
(add-after
|
|
|
|
|
'unpack 'disable-container-tests
|
|
|
|
|
;; XXX FIXME: These tests fail within the build container.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "tests/syscalls.scm"
|
2016-12-21 14:26:21 +01:00
|
|
|
|
(("^\\(test-(assert|equal) \"(clone|setns|pivot-root)\"" all)
|
2015-07-21 23:14:39 +02:00
|
|
|
|
(string-append "(test-skip 1)\n" all)))
|
|
|
|
|
(substitute* "tests/containers.scm"
|
2016-11-14 15:38:09 +01:00
|
|
|
|
(("^\\(test-(assert|equal)" all)
|
2015-07-21 23:14:39 +02:00
|
|
|
|
(string-append "(test-skip 1)\n" all)))
|
2015-11-03 09:37:52 +01:00
|
|
|
|
(when (file-exists? "tests/guix-environment-container.sh")
|
|
|
|
|
(substitute* "tests/guix-environment-container.sh"
|
|
|
|
|
(("guix environment --version")
|
|
|
|
|
"exit 77\n")))
|
2015-07-21 23:14:39 +02:00
|
|
|
|
#t))
|
2015-11-03 09:37:52 +01:00
|
|
|
|
(add-before 'check 'set-SHELL
|
|
|
|
|
(lambda _
|
|
|
|
|
;; 'guix environment' tests rely on 'SHELL' having a
|
|
|
|
|
;; correct value, so set it.
|
|
|
|
|
(setenv "SHELL" (which "sh"))
|
|
|
|
|
#t))
|
2015-06-13 19:31:24 +02:00
|
|
|
|
(add-after
|
|
|
|
|
'install 'wrap-program
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
;; Make sure the 'guix' command finds GnuTLS and
|
|
|
|
|
;; Guile-JSON automatically.
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(json (assoc-ref inputs "guile-json"))
|
2016-11-28 20:31:22 +01:00
|
|
|
|
(ssh (assoc-ref inputs "guile-ssh"))
|
2015-06-13 19:31:24 +02:00
|
|
|
|
(gnutls (assoc-ref inputs "gnutls"))
|
|
|
|
|
(path (string-append
|
|
|
|
|
json "/share/guile/site/2.0:"
|
2016-11-28 20:31:22 +01:00
|
|
|
|
ssh "/share/guile/site/2.0:"
|
2015-06-13 19:31:24 +02:00
|
|
|
|
gnutls "/share/guile/site/2.0")))
|
2016-03-29 22:11:59 +02:00
|
|
|
|
|
|
|
|
|
;; Ignore user settings so that a bogus
|
|
|
|
|
;; GUILE_LOAD_COMPILED_PATH does not prevent use of
|
|
|
|
|
;; 'guix', notably when it contains entries pointing to
|
|
|
|
|
;; incompatible .go files as reported at
|
|
|
|
|
;; <https://lists.gnu.org/archive/html/guix-devel/2016-03/msg01261.html>.
|
2015-06-13 19:31:24 +02:00
|
|
|
|
(wrap-program (string-append out "/bin/guix")
|
2016-10-04 22:40:46 +02:00
|
|
|
|
`("GUILE_LOAD_PATH" ":" prefix (,path))
|
2016-03-29 22:11:59 +02:00
|
|
|
|
`("GUILE_LOAD_COMPILED_PATH" ":" = (,path)))
|
|
|
|
|
|
2015-06-13 19:31:24 +02:00
|
|
|
|
#t))))))
|
2014-11-12 21:56:59 +01:00
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)
|
2016-10-30 23:06:06 +01:00
|
|
|
|
|
|
|
|
|
;; XXX: Keep the development inputs here even though
|
|
|
|
|
;; they're unnecessary, just so that 'guix environment
|
|
|
|
|
;; guix' always contains them.
|
|
|
|
|
("autoconf" ,(autoconf-wrapper))
|
|
|
|
|
("automake" ,automake)
|
2016-11-18 18:26:08 +01:00
|
|
|
|
("gettext" ,gettext-minimal)
|
2016-10-30 23:06:06 +01:00
|
|
|
|
("texinfo" ,texinfo)
|
|
|
|
|
("graphviz" ,graphviz)
|
|
|
|
|
("help2man" ,help2man)))
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(inputs
|
|
|
|
|
(let ((boot-guile (lambda (arch hash)
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2015-01-27 10:17:28 +01:00
|
|
|
|
(uri (boot-guile-uri arch))
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(sha256 hash)))))
|
|
|
|
|
`(("bzip2" ,bzip2)
|
2013-09-24 22:37:51 +02:00
|
|
|
|
("gzip" ,gzip)
|
2016-07-29 11:32:17 +02:00
|
|
|
|
("zlib" ,zlib) ;for 'guix publish'
|
2013-09-24 22:37:51 +02:00
|
|
|
|
|
2013-08-24 17:23:17 +02:00
|
|
|
|
("sqlite" ,sqlite)
|
|
|
|
|
("libgcrypt" ,libgcrypt)
|
|
|
|
|
("guile" ,guile-2.0)
|
|
|
|
|
|
|
|
|
|
("boot-guile/i686"
|
|
|
|
|
,(boot-guile "i686"
|
|
|
|
|
(base32
|
2013-12-11 13:55:17 +01:00
|
|
|
|
"0im800m30abgh7msh331pcbjvb4n02smz5cfzf1srv0kpx3csmxp")))
|
2013-08-24 17:23:17 +02:00
|
|
|
|
("boot-guile/x86_64"
|
|
|
|
|
,(boot-guile "x86_64"
|
|
|
|
|
(base32
|
2013-12-11 13:55:17 +01:00
|
|
|
|
"1w2p5zyrglzzniqgvyn1b55vprfzhgk8vzbzkkbdgl5248si0yq3")))
|
|
|
|
|
("boot-guile/mips64el"
|
|
|
|
|
,(boot-guile "mips64el"
|
|
|
|
|
(base32
|
2015-01-27 10:17:28 +01:00
|
|
|
|
"0fzp93lvi0hn54acc0fpvhc7bvl0yc853k62l958cihk03q80ilr")))
|
|
|
|
|
("boot-guile/armhf"
|
|
|
|
|
,(boot-guile "armhf"
|
|
|
|
|
(base32
|
|
|
|
|
"1mi3brl7l58aww34rawhvja84xc7l1b4hmwdmc36fp9q9mfx0lg5"))))))
|
2015-01-28 23:36:58 +01:00
|
|
|
|
(propagated-inputs
|
2015-05-12 16:32:08 +02:00
|
|
|
|
`(("gnutls" ,gnutls) ;for 'guix download' & co.
|
|
|
|
|
("guile-json" ,guile-json)
|
2016-12-22 10:47:28 +01:00
|
|
|
|
("guile-ssh" ,guile-ssh)))
|
2015-01-28 23:36:58 +01:00
|
|
|
|
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(home-page "http://www.gnu.org/software/guix")
|
2013-12-01 22:33:23 +01:00
|
|
|
|
(synopsis "Functional package manager for installed software packages and versions")
|
2013-08-24 17:23:17 +02:00
|
|
|
|
(description
|
2013-12-01 22:33:23 +01:00
|
|
|
|
"GNU Guix is a functional package manager for the GNU system, and is
|
2014-09-13 15:31:31 +02:00
|
|
|
|
also a distribution thereof. It includes a virtual machine image. Besides
|
2013-12-01 22:33:23 +01:00
|
|
|
|
the usual package management features, it also supports transactional
|
2014-09-13 15:31:31 +02:00
|
|
|
|
upgrades and roll-backs, per-user profiles, and much more. It is based on
|
|
|
|
|
the Nix package manager.")
|
2016-04-14 22:18:56 +02:00
|
|
|
|
(license gpl3+)
|
|
|
|
|
(properties '((ftp-server . "alpha.gnu.org")))))
|
2013-09-24 22:40:33 +02:00
|
|
|
|
|
2014-10-13 00:29:09 +02:00
|
|
|
|
(define guix-devel
|
2014-06-27 23:06:55 +02:00
|
|
|
|
;; Development version of Guix.
|
2015-04-08 10:41:27 +02:00
|
|
|
|
;;
|
2016-03-25 10:22:02 +01:00
|
|
|
|
;; Note: use a very short commit id; with a longer one, the limit on
|
|
|
|
|
;; hash-bang lines would be exceeded while running the tests.
|
2017-01-15 22:13:23 +01:00
|
|
|
|
(let ((commit "d9da3a757d3081403081577c4e07763c9b809043"))
|
2016-12-20 17:30:25 +01:00
|
|
|
|
(package (inherit guix-0.12.0)
|
2017-01-15 22:13:23 +01:00
|
|
|
|
(version (string-append "0.12.0-4." (string-take commit 4)))
|
2014-06-27 23:06:55 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
2016-05-14 15:50:25 +02:00
|
|
|
|
;; "git://git.sv.gnu.org/guix.git" temporarily
|
|
|
|
|
;; unavailable (XXX).
|
|
|
|
|
(url "http://git.savannah.gnu.org/r/guix.git")
|
2015-01-13 11:41:51 +01:00
|
|
|
|
(commit commit)))
|
2014-06-27 23:06:55 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2017-01-15 22:13:23 +01:00
|
|
|
|
"17w9jdzm3lvfbchx7qrlkczp2jsfsi6v8cpfqh290cip5gxgz9bn"))
|
2015-06-11 23:10:26 +02:00
|
|
|
|
(file-name (string-append "guix-" version "-checkout"))))
|
2014-06-27 23:06:55 +02:00
|
|
|
|
(arguments
|
2016-12-20 17:30:25 +01:00
|
|
|
|
(substitute-keyword-arguments (package-arguments guix-0.12.0)
|
2015-11-03 14:43:42 +01:00
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
;; Set 'DOT_USER_PROGRAM' to the empty string so we don't keep a
|
|
|
|
|
;; reference to Graphviz, whose closure is pretty big (too big for
|
|
|
|
|
;; the GuixSD installation image.)
|
|
|
|
|
`(cons "ac_cv_path_DOT_USER_PROGRAM=dot" ,flags))
|
2014-06-27 23:06:55 +02:00
|
|
|
|
((#:phases phases)
|
2015-07-09 23:41:38 +02:00
|
|
|
|
`(modify-phases ,phases
|
|
|
|
|
(add-after
|
|
|
|
|
'unpack 'bootstrap
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Make sure 'msgmerge' can modify the PO files.
|
|
|
|
|
(for-each (lambda (po)
|
|
|
|
|
(chmod po #o666))
|
|
|
|
|
(find-files "." "\\.po$"))
|
2014-06-27 23:06:55 +02:00
|
|
|
|
|
2016-10-30 23:06:06 +01:00
|
|
|
|
(zero? (system* "sh" "bootstrap")))))))))))
|
2014-10-13 00:29:09 +02:00
|
|
|
|
|
2016-12-20 18:06:00 +01:00
|
|
|
|
(define-public guix guix-devel)
|
2014-09-28 01:04:18 +02:00
|
|
|
|
|
2016-06-19 22:26:59 +02:00
|
|
|
|
(define (source-file? file stat)
|
|
|
|
|
"Return true if FILE is likely a source file, false if it is a typical
|
|
|
|
|
generated file."
|
|
|
|
|
(define (wrong-extension? file)
|
|
|
|
|
(or (string-suffix? "~" file)
|
|
|
|
|
(member (file-extension file)
|
|
|
|
|
'("o" "a" "lo" "so" "go"))))
|
|
|
|
|
|
|
|
|
|
(match (basename file)
|
|
|
|
|
((or ".git" "autom4te.cache" "configure" "Makefile" "Makefile.in" ".libs")
|
|
|
|
|
#f)
|
|
|
|
|
((? wrong-extension?)
|
|
|
|
|
#f)
|
|
|
|
|
(_
|
|
|
|
|
#t)))
|
|
|
|
|
|
|
|
|
|
(define-public current-guix
|
2017-01-29 00:34:48 +01:00
|
|
|
|
(let ((select? (delay (or (git-predicate
|
2016-06-19 22:26:59 +02:00
|
|
|
|
(string-append (current-source-directory)
|
|
|
|
|
"/../.."))
|
|
|
|
|
source-file?))))
|
|
|
|
|
(lambda ()
|
|
|
|
|
"Return a package representing Guix built from the current source tree.
|
|
|
|
|
This works by adding the current source tree to the store (after filtering it
|
|
|
|
|
out) and returning a package that uses that as its 'source'."
|
|
|
|
|
(package
|
|
|
|
|
(inherit guix)
|
|
|
|
|
(version (string-append (package-version guix) "+"))
|
|
|
|
|
(source (local-file "../.." "guix-current"
|
|
|
|
|
#:recursive? #t
|
|
|
|
|
#:select? (force select?)))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Other tools.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-09-28 01:04:18 +02:00
|
|
|
|
(define-public nix
|
|
|
|
|
(package
|
|
|
|
|
(name "nix")
|
2017-02-08 13:54:42 +01:00
|
|
|
|
(version "1.11.6")
|
2014-09-28 01:04:18 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://nixos.org/releases/nix/nix-"
|
|
|
|
|
version "/nix-" version ".tar.xz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2017-02-08 13:54:42 +01:00
|
|
|
|
"18xjg7cfvqzhsmvir6xmw95jxvl2w7icphbbll462xbnj9ddaag7"))))
|
2014-09-28 01:04:18 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
;; XXX: Should we pass '--with-store-dir=/gnu/store'? But then we'd also
|
|
|
|
|
;; need '--localstatedir=/var'. But then! The thing would use /var/nix
|
|
|
|
|
;; instead of /var/guix. So in the end, we do nothing special.
|
2015-11-12 10:59:34 +01:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags
|
|
|
|
|
;; Set the prefixes of Perl libraries to avoid propagation.
|
|
|
|
|
(let ((perl-libdir (lambda (p)
|
|
|
|
|
(string-append
|
|
|
|
|
(assoc-ref %build-inputs p)
|
|
|
|
|
"/lib/perl5/site_perl"))))
|
|
|
|
|
(list (string-append "--with-dbi="
|
|
|
|
|
(perl-libdir "perl-dbi"))
|
|
|
|
|
(string-append "--with-dbd-sqlite="
|
|
|
|
|
(perl-libdir "perl-dbd-sqlite"))
|
|
|
|
|
(string-append "--with-www-curl="
|
|
|
|
|
(perl-libdir "perl-www-curl"))))))
|
2014-09-28 01:04:18 +02:00
|
|
|
|
(native-inputs `(("perl" ,perl)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs `(("curl" ,curl)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("libgc" ,libgc)
|
|
|
|
|
("sqlite" ,sqlite)
|
2015-11-12 10:59:34 +01:00
|
|
|
|
("bzip2" ,bzip2)
|
|
|
|
|
("perl-www-curl" ,perl-www-curl)
|
|
|
|
|
("perl-dbi" ,perl-dbi)
|
|
|
|
|
("perl-dbd-sqlite" ,perl-dbd-sqlite)))
|
2014-09-28 01:04:18 +02:00
|
|
|
|
(home-page "http://nixos.org/nix/")
|
|
|
|
|
(synopsis "The Nix package manager")
|
|
|
|
|
(description
|
|
|
|
|
"Nix is a purely functional package manager. This means that it treats
|
|
|
|
|
packages like values in purely functional programming languages such as
|
|
|
|
|
Haskell—they are built by functions that don't have side-effects, and they
|
|
|
|
|
never change after they have been built. Nix stores packages in the Nix
|
|
|
|
|
store, usually the directory /nix/store, where each package has its own unique
|
|
|
|
|
sub-directory.")
|
|
|
|
|
(license lgpl2.1+)))
|
2015-02-21 19:59:08 +01:00
|
|
|
|
|
|
|
|
|
(define-public stow
|
|
|
|
|
(package
|
|
|
|
|
(name "stow")
|
2015-11-11 23:45:29 +01:00
|
|
|
|
(version "2.2.2")
|
2015-02-21 19:59:08 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/stow/stow-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-11-11 23:45:29 +01:00
|
|
|
|
"1pvky9fayms4r6fhns8jd0vavszd7d979w62vfd5n88v614pdxz2"))))
|
2015-02-21 19:59:08 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("perl" ,perl)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl-test-simple" ,perl-test-simple)
|
|
|
|
|
("perl-test-output" ,perl-test-output)
|
2015-11-11 23:45:29 +01:00
|
|
|
|
("perl-capture-tiny" ,perl-capture-tiny)
|
|
|
|
|
("perl-io-stringy" ,perl-io-stringy)))
|
2015-02-21 19:59:08 +01:00
|
|
|
|
(home-page "https://www.gnu.org/software/stow/")
|
|
|
|
|
(synopsis "Managing installed software packages")
|
|
|
|
|
(description
|
|
|
|
|
"GNU Stow is a symlink manager. It generates symlinks to directories
|
|
|
|
|
of data and makes them appear to be merged into the same directory. It is
|
|
|
|
|
typically used for managing software packages installed from source, by
|
|
|
|
|
letting you install them apart in distinct directories and then create
|
|
|
|
|
symlinks to the files in a common directory such as /usr/local.")
|
|
|
|
|
(license gpl2+)))
|
2015-10-26 00:13:03 +01:00
|
|
|
|
|
|
|
|
|
(define-public rpm
|
|
|
|
|
(package
|
|
|
|
|
(name "rpm")
|
2016-05-29 19:57:13 +02:00
|
|
|
|
(version "4.12.0.1")
|
2015-10-26 00:13:03 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://rpm.org/releases/rpm-4.12.x/rpm-"
|
|
|
|
|
version ".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-05-29 19:57:56 +02:00
|
|
|
|
"0a82ym8phx7g0f3k6smvxnvzh7yv857l42xafk49689kzhld5pbp"))
|
|
|
|
|
(patches (search-patches "rpm-CVE-2014-8118.patch"))))
|
2015-10-26 00:13:03 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags '("--with-external-db" ;use the system's bdb
|
|
|
|
|
"--enable-python"
|
|
|
|
|
"--without-lua")
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'set-nspr-search-path
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
;; nspr.pc contains the right -I flag pointing to
|
|
|
|
|
;; 'include/nspr', but unfortunately 'configure' doesn't
|
|
|
|
|
;; use 'pkg-config'. Thus, augment CPATH.
|
|
|
|
|
;; Likewise for NSS.
|
|
|
|
|
(let ((nspr (assoc-ref inputs "nspr"))
|
|
|
|
|
(nss (assoc-ref inputs "nss")))
|
|
|
|
|
(setenv "CPATH"
|
2016-01-05 13:58:36 +01:00
|
|
|
|
(string-append (getenv "C_INCLUDE_PATH") ":"
|
2015-10-26 00:13:03 +01:00
|
|
|
|
nspr "/include/nspr:"
|
|
|
|
|
nss "/include/nss"))
|
|
|
|
|
(setenv "LIBRARY_PATH"
|
|
|
|
|
(string-append (getenv "LIBRARY_PATH") ":"
|
|
|
|
|
nss "/lib/nss"))
|
|
|
|
|
#t)))
|
|
|
|
|
(add-after 'install 'fix-rpm-symlinks
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
;; 'make install' gets these symlinks wrong. Fix them.
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
|
(with-directory-excursion bin
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(delete-file file)
|
|
|
|
|
(symlink "rpm" file))
|
|
|
|
|
'("rpmquery" "rpmverify"))
|
|
|
|
|
#t)))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("python" ,python-2)
|
|
|
|
|
("xz" ,xz)
|
|
|
|
|
("bdb" ,bdb)
|
|
|
|
|
("popt" ,popt)
|
|
|
|
|
("nss" ,nss)
|
|
|
|
|
("nspr" ,nspr)
|
|
|
|
|
("libarchive" ,libarchive)
|
|
|
|
|
("nettle" ,nettle) ;XXX: actually a dependency of libarchive
|
|
|
|
|
("file" ,file)
|
|
|
|
|
("bzip2" ,bzip2)
|
|
|
|
|
("zlib" ,zlib)
|
|
|
|
|
("cpio" ,cpio)))
|
|
|
|
|
(home-page "http://www.rpm.org/")
|
|
|
|
|
(synopsis "The RPM Package Manager")
|
|
|
|
|
(description
|
|
|
|
|
"The RPM Package Manager (RPM) is a command-line driven package
|
|
|
|
|
management system capable of installing, uninstalling, verifying, querying,
|
|
|
|
|
and updating computer software packages. Each software package consists of an
|
|
|
|
|
archive of files along with information about the package like its version, a
|
|
|
|
|
description. There is also a library permitting developers to manage such
|
|
|
|
|
transactions from C or Python.")
|
|
|
|
|
|
|
|
|
|
;; The whole is GPLv2+; librpm itself is dual-licensed LGPLv2+ | GPLv2+.
|
|
|
|
|
(license gpl2+)))
|
|
|
|
|
|
2015-10-27 21:01:55 +01:00
|
|
|
|
(define-public diffoscope
|
|
|
|
|
(package
|
|
|
|
|
(name "diffoscope")
|
2016-12-11 07:48:03 +01:00
|
|
|
|
(version "63")
|
2015-10-27 21:01:55 +01:00
|
|
|
|
(source (origin
|
2016-02-25 01:15:01 +01:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri name version))
|
2015-10-27 21:01:55 +01:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2016-12-11 07:48:03 +01:00
|
|
|
|
"12q5d2nszql1g4jf2ss863v0wpvvhrkaivqzhy6af9m9zwvw0p0k"))))
|
2015-10-27 21:01:55 +01:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
2016-02-25 01:15:01 +01:00
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
|
|
|
|
;; setup.py mistakenly requires python-magic from PyPi, even
|
|
|
|
|
;; though the Python bindings of `file` are sufficient.
|
|
|
|
|
;; https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815844
|
|
|
|
|
(add-after 'unpack 'dependency-on-python-magic
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "setup.py"
|
2017-01-01 10:42:46 +01:00
|
|
|
|
(("'python-magic',") ""))))
|
|
|
|
|
(add-after 'unpack 'embed-tool-references
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* "diffoscope/difference.py"
|
|
|
|
|
(("@tool_required\\('colordiff'\\)") "")
|
|
|
|
|
(("\\[\"colordiff\"")
|
|
|
|
|
(string-append "[\"" (which "colordiff") "\"")))
|
|
|
|
|
(substitute* "diffoscope/comparators/utils.py"
|
|
|
|
|
(("@tool_required\\('xxd'\\)") "")
|
|
|
|
|
(("\\['xxd',")
|
|
|
|
|
(string-append "['" (which "xxd") "',")))
|
|
|
|
|
(substitute* "diffoscope/comparators/elf.py"
|
|
|
|
|
(("@tool_required\\('readelf'\\)") "")
|
|
|
|
|
(("\\['readelf',")
|
|
|
|
|
(string-append "['" (which "readelf") "',")))
|
|
|
|
|
#t)))))
|
2015-10-27 21:01:55 +01:00
|
|
|
|
(inputs `(("rpm" ,rpm) ;for rpm-python
|
2016-02-25 01:15:01 +01:00
|
|
|
|
("python-file" ,python-file)
|
|
|
|
|
("python-debian" ,python-debian)
|
|
|
|
|
("python-libarchive-c" ,python-libarchive-c)
|
|
|
|
|
("python-tlsh" ,python-tlsh)
|
2017-01-01 10:42:46 +01:00
|
|
|
|
("colordiff" ,colordiff)
|
|
|
|
|
("xxd" ,vim)
|
2015-10-27 21:01:55 +01:00
|
|
|
|
|
|
|
|
|
;; Below are modules used for tests.
|
2016-02-25 01:15:01 +01:00
|
|
|
|
("python-pytest" ,python-pytest)
|
|
|
|
|
("python-chardet" ,python-chardet)))
|
2015-10-27 21:01:55 +01:00
|
|
|
|
(home-page "http://diffoscope.org/")
|
|
|
|
|
(synopsis "Compare files, archives, and directories in depth")
|
|
|
|
|
(description
|
|
|
|
|
"Diffoscope tries to get to the bottom of what makes files or directories
|
|
|
|
|
different. It recursively unpacks archives of many kinds and transforms
|
|
|
|
|
various binary formats into more human readable forms to compare them. It can
|
|
|
|
|
compare two tarballs, ISO images, or PDFs just as easily.")
|
|
|
|
|
(license gpl3+)))
|