Skip to content

Commit

Permalink
Python 3.3: add less
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Jul 19, 2016
1 parent b410631 commit c59d211
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/development/interpreters/python/3.3/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
, bzip2
, db
, gdbm
, less
, libX11, xproto
, lzma
, ncurses
Expand All @@ -27,13 +28,19 @@ let
buildInputs = filter (p: p != null) [
zlib bzip2 lzma gdbm sqlite db readline ncurses openssl tcl tk libX11 xproto
];

propagatedBuildInputs = [
less
];

in
stdenv.mkDerivation {
name = "python3-${version}";
pythonVersion = majorVersion;
inherit majorVersion version;

inherit buildInputs;
inherit propagatedBuildInputs;

src = fetchurl {
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.xz";
Expand Down

0 comments on commit c59d211

Please sign in to comment.