mirror of
https://codeberg.org/guix/guix.git
synced 2026-09-07 14:22:15 +00:00
* gnu/packages/hugs.scm (hugs): Move from here ... * gnu/packages/haskell.scm: ... to here. Merges: guix/guix!4793 Relates-to: guix/guix#1134 Change-Id: I81b15e3215293420369b40c7a531c555db20ba63 Reviewed-by: Nguyễn Gia Phong <cnx@loang.net> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
24 lines
960 B
Scheme
24 lines
960 B
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;;
|
|
;;; 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 hugs)
|
|
#:use-module (guix deprecation)
|
|
#:use-module (gnu packages haskell))
|
|
|
|
;; XXX: Deprecated on <2026-05-17>.
|
|
(define-deprecated/public-alias hugs (@ (gnu packages haskell) hugs))
|