mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
tgt: fix build
xsltproc tried to download docbook.xsl
This commit is contained in:
parent
0c248d1cb1
commit
53a132a3a4
@ -1,4 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages }:
|
||||
{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages
|
||||
, docbook_xsl }:
|
||||
|
||||
let
|
||||
version = "1.0.60";
|
||||
@ -11,7 +12,7 @@ in stdenv.mkDerivation rec {
|
||||
sha256 = "1bf8rn3mavjrzkp5k23akqn5ilw43g8mpfr68z1bi8s9lr2gkf37";
|
||||
};
|
||||
|
||||
buildInputs = [ libxslt systemd libaio ];
|
||||
buildInputs = [ libxslt systemd libaio docbook_xsl ];
|
||||
|
||||
DESTDIR = "$(out)";
|
||||
PREFIX = "/";
|
||||
@ -34,4 +35,4 @@ in stdenv.mkDerivation rec {
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user