Merge pull request #170140 from armeenm/xtreemfs-python3
xtreemfs: switch to python3
This commit is contained in:
commit
99161fd5e0
1 changed files with 19 additions and 4 deletions
|
@ -1,5 +1,20 @@
|
||||||
{ stdenv, boost, fuse, openssl, cmake, attr, jdk, ant, which, file, python2
|
{ stdenv
|
||||||
, lib, valgrind, makeWrapper, fetchFromGitHub, fetchpatch }:
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
, makeWrapper
|
||||||
|
, ant
|
||||||
|
, attr
|
||||||
|
, boost
|
||||||
|
, cmake
|
||||||
|
, file
|
||||||
|
, fuse
|
||||||
|
, jdk
|
||||||
|
, openssl
|
||||||
|
, python3
|
||||||
|
, valgrind
|
||||||
|
, which
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
|
@ -13,8 +28,8 @@ stdenv.mkDerivation {
|
||||||
pname = "XtreemFS";
|
pname = "XtreemFS";
|
||||||
version = "1.5.1.81";
|
version = "1.5.1.81";
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper python3 ];
|
||||||
buildInputs = [ which attr python2 ];
|
buildInputs = [ which attr ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
|
|
Loading…
Reference in a new issue