about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-10-18 22:42:01 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-10-18 23:16:09 +0200
commit0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d (patch)
tree6488bc54bf2fa82c98e39a8be6a991c00b3608a6 /pkgs/tools/filesystems
parent481eea32803bff007466270858817487f70f019f (diff)
downloadnixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.tar
nixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.tar.gz
nixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.tar.bz2
nixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.tar.lz
nixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.tar.xz
nixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.tar.zst
nixlib-0e3b5834c0dd9977f72d3c4d846fcedeb10ae22d.zip
glusterfs: use python2
configure reports that only python2 is supported.
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/glusterfs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/glusterfs/default.nix b/pkgs/tools/filesystems/glusterfs/default.nix
index e97f246e70b9..32c87667ee36 100644
--- a/pkgs/tools/filesystems/glusterfs/default.nix
+++ b/pkgs/tools/filesystems/glusterfs/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, fuse, bison, flex_2_5_35, openssl, python, ncurses, readline,
+{stdenv, fetchurl, fuse, bison, flex_2_5_35, openssl, python2, ncurses, readline,
  autoconf, automake, libtool, pkgconfig, zlib, libaio, libxml2, acl, sqlite
  , liburcu, attr
 }:
@@ -13,7 +13,7 @@ let
     sha256="0f715r6bf12b37s1l3259qzfbz8l2g3mdsnnh2lflagzazn6jnap";
   };
   buildInputs = [
-    fuse bison flex_2_5_35 openssl python ncurses readline
+    fuse bison flex_2_5_35 openssl python2 ncurses readline
     autoconf automake libtool pkgconfig zlib libaio libxml2
     acl sqlite liburcu attr
   ];