uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
72
pkgs/development/tools/sourcetrail/python.nix
Normal file
72
pkgs/development/tools/sourcetrail/python.nix
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
{ stdenv, lib, fetchFromGitHub, wrapPython, python, jedi, parso, cmake, swig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "SourcetrailPythonIndexer";
|
||||
version = "v1_db25_p5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CoatiSoftware";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "01jaigxigq6dvfwq018gn9qw7i6p4jm0y71lqzschfv9vwf6ga45";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ wrapPython cmake swig ];
|
||||
buildInputs = [ python ];
|
||||
pythonPath = [ jedi parso ];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
cmakeFlags = [
|
||||
"-DBUILD_BINDINGS_PYTHON=1"
|
||||
"-DPYTHON_VERSION=${lib.versions.majorMinor python.version}"
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
pushd SourcetrailDB
|
||||
cmake -Bbuild $cmakeFlags .
|
||||
pushd build
|
||||
make -j $NIX_BUILD_CORES
|
||||
popd
|
||||
popd
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
pushd SourcetrailDB/build/bindings_python
|
||||
cp _sourcetraildb.dylib _sourcetraildb.so
|
||||
popd
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
buildPythonPath "$pythonPath"
|
||||
|
||||
# FIXME: some tests are failing
|
||||
# PYTHONPATH="$program_PYTHONPATH:SourcetrailDB/build/bindings_python" \
|
||||
# ${python}/bin/python test.py
|
||||
PYTHONPATH="$program_PYTHONPATH:SourcetrailDB/build/bindings_python" \
|
||||
${python}/bin/python test_shallow.py
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
shopt -s extglob
|
||||
mkdir -p $out/{bin,libexec}
|
||||
|
||||
cp !(run).py $out/libexec # copy *.py excluding run.py (needs extglob)
|
||||
cat <(echo '#!/usr/bin/env python') run.py > $out/libexec/run.py
|
||||
chmod +x $out/libexec/run.py
|
||||
ln -s $out/libexec/run.py $out/bin/SourcetrailPythonIndexer
|
||||
|
||||
pushd SourcetrailDB/build/bindings_python
|
||||
cp sourcetraildb.py $out/libexec
|
||||
cp _sourcetraildb.so $out/libexec/_sourcetraildb.so
|
||||
popd
|
||||
|
||||
wrapPythonProgramsIn "$out/libexec" "$pythonPath"
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python indexer for Sourcetrail";
|
||||
homepage = "https://github.com/CoatiSoftware/SourcetrailPythonIndexer";
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue