mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
asciidoc: Pin to Python 2
This commit is contained in:
parent
ff980cc553
commit
777a6cafd9
|
@ -1,4 +1,4 @@
|
|||
{ fetchurl, stdenv, python
|
||||
{ fetchurl, stdenv, python2
|
||||
|
||||
, enableStandardFeatures ? false
|
||||
, sourceHighlight ? null
|
||||
|
@ -148,7 +148,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1w71nk527lq504njmaf0vzr93pgahkgzzxzglrq6bay8cw2rvnvq";
|
||||
};
|
||||
|
||||
buildInputs = [ python unzip ];
|
||||
buildInputs = [ python2 unzip ];
|
||||
|
||||
# install filters early, so their shebangs are patched too
|
||||
patchPhase = with stdenv.lib; ''
|
||||
|
@ -247,7 +247,7 @@ stdenv.mkDerivation rec {
|
|||
-i a2x.py
|
||||
'' + ''
|
||||
for n in $(find "$out" . -name \*.py); do
|
||||
sed -i -e "s,^#![[:space:]]*.*/bin/env python,#!${python}/bin/python,g" "$n"
|
||||
sed -i -e "s,^#![[:space:]]*.*/bin/env python,#!${python2}/bin/python,g" "$n"
|
||||
chmod +x "$n"
|
||||
done
|
||||
|
||||
|
|
|
@ -931,18 +931,18 @@ in
|
|||
appdata-tools = callPackage ../tools/misc/appdata-tools { };
|
||||
|
||||
asciidoc = callPackage ../tools/typesetting/asciidoc {
|
||||
inherit (pythonPackages) matplotlib numpy aafigure recursivePthLoader;
|
||||
inherit (python2Packages) matplotlib numpy aafigure recursivePthLoader;
|
||||
w3m = w3m-batch;
|
||||
enableStandardFeatures = false;
|
||||
};
|
||||
|
||||
asciidoc-full = appendToName "full" (asciidoc.override {
|
||||
inherit (pythonPackages) pygments;
|
||||
inherit (python2Packages) pygments;
|
||||
enableStandardFeatures = true;
|
||||
});
|
||||
|
||||
asciidoc-full-with-plugins = appendToName "full-with-plugins" (asciidoc.override {
|
||||
inherit (pythonPackages) pygments;
|
||||
inherit (python2Packages) pygments;
|
||||
enableStandardFeatures = true;
|
||||
enableExtraPlugins = true;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue