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
38
pkgs/development/tools/postiats-utilities/default.nix
Normal file
38
pkgs/development/tools/postiats-utilities/default.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{ lib, stdenv, fetchFromGitHub, python3, python3Packages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "postiats-utilities";
|
||||
version = "2.1.1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "Hibou57";
|
||||
repo = "PostiATS-Utilities";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-QeBbv5lwqL2ARjB+RGyBHeuibaxugffBLhC9lYs+5tE=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Hibou57/PostiATS-Utilities";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.ttuegel ];
|
||||
};
|
||||
|
||||
buildInputs = [ python3 python3Packages.wrapPython ];
|
||||
|
||||
postPatch = ''
|
||||
for f in pats-* postiats/*.py; do
|
||||
sed -i "$f" -e "1 s,python3,python,"
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
libdir="$out/lib/${python3.libPrefix}/site-packages"
|
||||
mkdir -p "$libdir"
|
||||
cp -r postiats "$libdir"
|
||||
|
||||
mkdir -p "$out/bin"
|
||||
install pats-* "$out/bin"
|
||||
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue