3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #55357 from NixOS/update-rrdtool

rrdtool: 1.7.0 -> 1.7.1
This commit is contained in:
Sarah Brofeldt 2019-02-07 11:54:22 +01:00 committed by GitHub
commit 04e46a7a4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,21 +2,13 @@
, tcl-8_5, darwin }:
stdenv.mkDerivation rec {
name = "rrdtool-1.7.0";
name = "rrdtool-1.7.1";
src = fetchurl {
url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
sha256 = "0ssjqpa0dwwzbylc0drmlbq922qcw8crffc0rpr805xr6n4k8zgr";
sha256 = "1bhsg119j94xwykp2sbp01hhxcg78gzblfn7j98slrv9va77g6wq";
};
patches = [
# fix regression https://github.com/oetiker/rrdtool-1.x/issues/794
(fetchpatch {
url = "https://github.com/oetiker/rrdtool-1.x/compare/0f28f99...f1edd12.patch";
sha256 = "10g56zy0rdjpv3kvvmf6vvaysmla05wi8byy3l0xrz2x8m02ylqq";
})
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext perl libxml2 pango cairo groff ]