mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-08-01 14:31:33 +02:00
6e1bcc3147
* gnu/packages/idutils.scm (idutils): Run guix style. [native-inputs]: Drop input labels. Move from here ... * gnu/packages/code.scm: ... to here. Change-Id: Ie48e1e2ad67d484dbde9d8f5f37cf5bfb6df4a7f Signed-off-by: Ludovic Courtès <ludo@gnu.org>
25 lines
1.0 KiB
Scheme
25 lines
1.0 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2012-2013, 2015, 2021, 2025 Ludovic Courtès <ludo@gnu.org>
|
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
|
;;;
|
|
;;; 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 idutils)
|
|
#:use-module (gnu packages code)
|
|
#:use-module (guix deprecation))
|
|
|
|
(define-deprecated/public-alias idutils (@ (guix packages code) idutils))
|