;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Leo Famulari ;;; ;;; 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 . ;;; This file returns a manifest of packages related to linux-libre. ;;; Simplistically, it selects packages whose names begin with "linux-libre". ;;; It is used to assist continuous integration of the kernel packages. (use-modules (guix packages) (guix profiles) (gnu packages)) (manifest (map package->manifest-entry (fold-packages (lambda (package lst) (if (string-prefix? "linux-libre" (package-name package)) (cons package lst) lst)) '()))) c8'>treecommitdiff
/option>
AgeCommit message (Expand)Author
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-03-18 11:29:52 +0200
committerEfraim Flashner <efraim@flashner.co.il>2024-07-19 00:42:51 +0300
commit995f8fb7991edad84b40749c0572ad165639be51 (patch)
tree8b08e70a51cb1bed30f03381fefc25e5cd97cd4b /gnu
parente7a95c1a84e74ad77840e9323e0cc2e4e2713eeb (diff)
downloadguix-995f8fb7991edad84b40749c0572ad165639be51.tar.gz
guix-995f8fb7991edad84b40749c0572ad165639be51.zip
gnu: Add rust-include-flate-0.2.
* gnu/packages/crates-io.scm (rust-include-flate-0.2): New variable. (rust-include-flate-0.1): Inherit from rust-include-flate-0.2. Change-Id: I9ba0d54c623129c7be5b8593c5c027982f129067
Diffstat (limited to 'gnu')