mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
robodoc: fix darwin build
The makefile tried to be clever in Darwin environments, but by accident included the same files multiple times in the `install` command. This is not allowed these days.
This commit is contained in:
parent
49d79a00b8
commit
cbb3c7139f
@ -15,12 +15,16 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "l3prSdaGhOvXmZfCPbsZJNocO7y20zJjLQpajRTJOqE=";
|
||||
};
|
||||
|
||||
postConfigure = lib.optionalString stdenv.isDarwin ''
|
||||
substituteInPlace Docs/makefile.am \
|
||||
--replace 'man1_MANS = robodoc.1 robohdrs.1' 'man1_MANS ='
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
homepage = "https://github.com/gumpu/ROBODoc";
|
||||
description = "Documentation Extraction Tool";
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user