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
62
pkgs/development/python-modules/extractcode/libarchive.nix
Normal file
62
pkgs/development/python-modules/extractcode/libarchive.nix
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, libarchive
|
||||
, libb2
|
||||
, bzip2
|
||||
, expat
|
||||
, lz4
|
||||
, xz
|
||||
, zlib
|
||||
, zstd
|
||||
, plugincode
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "extractcode-libarchive";
|
||||
version = "21.5.31";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nexB";
|
||||
repo = "scancode-plugins";
|
||||
rev = "v${version}";
|
||||
sha256 = "02qinla281fc6pmg5xzsrmqnf9js76f2qcbf98zq7m2dkn70as4w";
|
||||
};
|
||||
|
||||
sourceRoot = "source/builtins/extractcode_libarchive-linux";
|
||||
|
||||
preBuild = ''
|
||||
pushd src/extractcode_libarchive/lib
|
||||
|
||||
rm *.so *.so.*
|
||||
ln -s ${lib.getLib libarchive}/lib/libarchive.so libarchive.so
|
||||
ln -s ${lib.getLib libb2}/lib/libb2.so libb2-la3511.so.1
|
||||
ln -s ${lib.getLib bzip2}/lib/libbz2.so libbz2-la3511.so.1.0
|
||||
ln -s ${lib.getLib expat}/lib/libexpat.so libexpat-la3511.so.1
|
||||
ln -s ${lib.getLib lz4}/lib/liblz4.so liblz4-la3511.so.1
|
||||
ln -s ${lib.getLib xz}/lib/liblzma.so liblzma-la3511.so.5
|
||||
ln -s ${lib.getLib zlib}/lib/libz.so libz-la3511.so.1
|
||||
ln -s ${lib.getLib zstd}/lib/libzstd.so libzstd-la3511.so.1
|
||||
|
||||
popd
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
plugincode
|
||||
];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"extractcode_libarchive"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A ScanCode Toolkit plugin to provide pre-built binary libraries and utilities and their locations";
|
||||
homepage = "https://github.com/nexB/scancode-plugins/tree/main/builtins/extractcode_libarchive-linux";
|
||||
license = with licenses; [ asl20 bsd2 ];
|
||||
maintainers = teams.determinatesystems.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue