pdf2svg: add autoreconf hook (close #11888)
This fixes builds that may fail due to all files in the archive having the same timestamp.
This commit is contained in:
parent
5b10c11616
commit
3af583d976
@ -1,4 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, cairo, gtk, poppler }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, cairo, gtk, poppler }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pdf2svg-${version}";
|
||||
@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k";
|
||||
};
|
||||
|
||||
buildInputs = [ cairo pkgconfig poppler gtk ];
|
||||
buildInputs = [ autoreconfHook cairo pkgconfig poppler gtk ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "PDF converter to SVG format";
|
||||
|
Loading…
Reference in New Issue
Block a user