;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Guy Z. Grant ;;; ;;; 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 (gnu packages kbd) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix packages) #:use-module (gnu packages linux)) (define-public kbd (package (name "kbd") (version "1.15.3") (source (origin (method url-fetch) (uri (string-append "http://www.kbd-project.org/download/kbd-" version ".tar.gz")) (sha256 (base32 "1vcl2791xshjdpi4w88iy87gkb7zv0dbvi83f98v30dvqc9mfl46")))) (build-system gnu-build-system) (inputs `(("linux-pam" ,linux-pam))) (home-page "http://kbd-project.org") (synopsis "Keytable files and keyboard utilities") (description "Kbd contains tools for managing Linux console (Linux console, virtual terminals, keyboard, etc.) – mainly, what they do is loading console fonts and keyboard maps.") (license gpl2)))