Python 3.6: add less
This commit is contained in:
parent
7c75fa4bc2
commit
773f6225cb
|
@ -3,6 +3,7 @@
|
||||||
, bzip2
|
, bzip2
|
||||||
, db
|
, db
|
||||||
, gdbm
|
, gdbm
|
||||||
|
, less
|
||||||
, libX11, xproto
|
, libX11, xproto
|
||||||
, lzma
|
, lzma
|
||||||
, ncurses
|
, ncurses
|
||||||
|
@ -44,6 +45,11 @@ let
|
||||||
libX11
|
libX11
|
||||||
xproto
|
xproto
|
||||||
] ++ optionals stdenv.isDarwin [ CF configd ];
|
] ++ optionals stdenv.isDarwin [ CF configd ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
less
|
||||||
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "python3-${fullVersion}";
|
name = "python3-${fullVersion}";
|
||||||
|
@ -51,6 +57,7 @@ stdenv.mkDerivation {
|
||||||
inherit majorVersion version;
|
inherit majorVersion version;
|
||||||
|
|
||||||
inherit buildInputs;
|
inherit buildInputs;
|
||||||
|
inherit propagatedBuildInputs;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.python.org/ftp/python/${majorVersion}.0/Python-${fullVersion}.tar.xz";
|
url = "https://www.python.org/ftp/python/${majorVersion}.0/Python-${fullVersion}.tar.xz";
|
||||||
|
|
Loading…
Reference in New Issue