;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Andreas Enge ;;; Copyright © 2014 Mark H Weaver ;;; ;;; 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 ipcalc) #:use-module (gnu packages) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) (define-public ipcalc (package (name "ipcalc") (version "0.41") (source (origin (method url-fetch) (uri (string-append "mirror://http://jodies.de/ipcalc-archive/ipcalc-" version ".tar.gz")) (sha256 (base32 "12if9sm8h2ac0pgwkw835cgyqjxm6h27k4kfn2vfas9krrqwbafx")))) (build-system gnu-build-system) (arguments `(#:phases (alist-cons-after 'unpack 'fix-docdir (lambda _ ;; Although indent uses a modern autoconf in which docdir ;; defaults to PREFIX/share/doc, the doc/Makefile.am ;; overrides this to be in PREFIX/doc. Fix this. (substitute* "doc/Makefile.in" (("^docdir = .*$") "docdir = @address@hidden"))) %standard-phases))) (synopsis "IP Calculator") (description "Ipcalc takes an IP address and netmask and calculates the resulting broadcast, network, Cisco wildcard mask, and host range..") (license gpl2) (home-page "http://jodies.de/ipcalc/")))