;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2014, 2021, 2022 Ludovic Courtès ;;; ;;; 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 (guix) #:use-module (guix packages) #:re-export-and-replace (define-public)) ;from (guix packages) ;; The composite module that re-exports everything from the public modules. (eval-when (eval load compile) (begin (define %public-modules '(base32 build-system derivations download gexp monads monad-repl packages store utils)) (for-each (let ((i (module-public-interface (current-module)))) (lambda (m) (module-use! i (resolve-interface `(guix ,m))))) %public-modules))) scm?id=466bf553d7b405b8c227b8a99aa6ef8b7a4392a8'>commitdiff
AgeCommit message (Expand)Author
2020-05-05gnu: hyperledger-iroha: Build with the latest Boost....* gnu/packages/hyperledger.scm (hyperledger-iroha)[inputs]: Change from BOOST-1.69.0 to BOOST. Marius Bakke
2020-03-21gnu: gRPC: Update to 1.27.3....* gnu/packages/rpc.scm (grpc): Update to 1.27.3. [arguments]: Add "-DgRPC_ABSL_PROVIDER=package" in #:configure-flags. [inputs]: Add ABSEIL-CPP. (grpc-1.16.1): New public variable. * gnu/packages/hyperledger.scm (hyperledger-iroha)[inputs]: Change from GRPC to GRPC-1.16. * gnu/packages/machine-learning.scm (tensorflow)[native-inputs, inputs]: Likewise. Marius Bakke
2020-03-21gnu: gRPC: Move to (gnu packages rpc)....* gnu/packages/machine-learning.scm (grpc): Move to ... * gnu/packages/rpc.scm: ... here. New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly. * gnu/packages/hyperledger.scm: Adjust module imports. Marius Bakke
2020-03-12gnu: Add hyperledger-iroha....This package was co-authored with Efraim Flashner <efraim@flashner.co.il> * gnu/packages/hyperledger.scm (hyperledger-iroha): New variable. Pierre Neidhardt
2020-03-12gnu: Add hyperledger-iroha-ed25519....* gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519): New variable. Pierre Neidhardt