mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
* gnu/packages/lsof.scm (lsof): Update to 4.99.6. [source]: Remove patch. [arguments]: Remove field. * gnu/packages/patches/lsof-compat-linux-6.9.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it. Change-Id: I451ae8fdc2e45b0c835a0ddc80ec851cd6fc2737 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
68 lines
2.6 KiB
Scheme
68 lines
2.6 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
|
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
|
;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
|
;;; Copyright © 2021 Maxim Cournoyer <maxim@guixotic.coop>
|
|
;;;
|
|
;;; 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 lsof)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix utils)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages autotools)
|
|
#:use-module (gnu packages groff)
|
|
#:use-module (gnu packages perl)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages linux))
|
|
|
|
(define-public lsof
|
|
(package
|
|
(name "lsof")
|
|
(version "4.99.6")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/lsof-org/lsof")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"08p0c0wci9vam6b29ym7z7sip8gd0j0dz7zy4f0b32dw51rb3z9k"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs (list automake
|
|
autoconf
|
|
groff ;for soelim
|
|
libtool
|
|
perl
|
|
pkg-config
|
|
procps ;for ps
|
|
util-linux)) ;for unshare
|
|
(synopsis "Display information about open files")
|
|
(description
|
|
"Lsof stands for LiSt Open Files, and it does just that.
|
|
It lists information about files that are open by the processes running
|
|
on the system.")
|
|
(license (license:fsf-free
|
|
"file://00FAQ"
|
|
"License inspired by zlib, see point 1.9 of 00FAQ in the distribution."))
|
|
(home-page "https://people.freebsd.org/~abe/")))
|