aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/haskell-check.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/haskell-check.scm')
0 files changed, 0 insertions, 0 deletions
the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; 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)) '())))