commit
7d6fd8b008
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromBitbucket, python2 }:
|
{ stdenv, fetchFromBitbucket, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "7.2";
|
version = "7.2";
|
||||||
@ -11,9 +11,13 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1bm15lw0vp901dj2vsqx6yixmn7ls3brrzh1w6zgd1ksjzlm5aax";
|
sha256 = "1bm15lw0vp901dj2vsqx6yixmn7ls3brrzh1w6zgd1ksjzlm5aax";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ python2 ];
|
checkInputs = [ python3 ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
substituteInPlace Makefile --replace "python2 go2.py" "python go.py"
|
||||||
|
'';
|
||||||
|
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
|
||||||
@ -31,6 +35,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://tkatchev.bitbucket.io/tab/";
|
homepage = "https://tkatchev.bitbucket.io/tab/";
|
||||||
license = licenses.boost;
|
license = licenses.boost;
|
||||||
maintainers = with maintainers; [ mstarzyk ];
|
maintainers = with maintainers; [ mstarzyk ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user