Merge pull request #248751 from risicle/ris-sysstat-12.7.4

sysstat: 12.6.2 -> 12.7.4
This commit is contained in:
Pierre Bourdon 2023-09-08 15:00:34 +02:00 committed by GitHub
commit 5058dcfbfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,19 @@
{ lib, stdenv, fetchurl, gettext, bzip2 }:
{ lib
, stdenv
, fetchFromGitHub
, gettext
, bzip2
}:
stdenv.mkDerivation rec {
pname = "sysstat";
version = "12.6.2";
version = "12.7.4";
src = fetchurl {
url = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${version}.tar.xz";
hash = "sha256-PncTSu2qb8V9l0XaZ+39iZDhmt7nGsRxliKSYcVj+0g=";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-ELmSzWnJ8vGwGPwY/5MFp/2gQhMXMjNG4bHtCplfQSc=";
};
buildInputs = [ gettext ];