mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
symbiflow-arch-defs: init at 20200914-111752-g05d68df0
This commit is contained in:
parent
44fbc60abd
commit
ccdf7431bb
47
pkgs/data/misc/symbiflow-arch-defs/default.nix
Normal file
47
pkgs/data/misc/symbiflow-arch-defs/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ stdenv
|
||||
, fetchurl
|
||||
, autoPatchelfHook
|
||||
, python3Packages
|
||||
, archs ? [ "xc7a100t" "xc7a50t" "xc7z010" "xc7z020" ]
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "symbiflow-arch-defs";
|
||||
version = "20200914-111752-g05d68df0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://storage.googleapis.com/symbiflow-arch-defs/artifacts/prod/foss-fpga-tools/symbiflow-arch-defs/continuous/install/66/20200914-111752/symbiflow-arch-defs-install-05d68df0.tar.xz";
|
||||
sha256 = "1gmynybh8n33ag521w17c2kd16n834hqc6d8hi2pfs5kg1jl1a74";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python3Packages.lxml
|
||||
python3Packages.python-constraint
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp -r bin/{symbiflow_*,vpr_common,python} $out/bin
|
||||
for script in $out/bin/symbiflow_*; do
|
||||
substituteInPlace $script --replace '/env' '/symbiflow_env'
|
||||
done
|
||||
cp bin/env $out/bin/symbiflow_env
|
||||
|
||||
mkdir -p $out/share/symbiflow/arch
|
||||
cp -r share/symbiflow/{scripts,techmaps} $out/share/symbiflow/
|
||||
|
||||
for arch in ${builtins.concatStringsSep " " archs}; do
|
||||
cp -r share/symbiflow/arch/"$arch"_test* $out/share/symbiflow/arch/
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Project X-Ray - Xilinx Series 7 Bitstream Documentation";
|
||||
homepage = "https://github.com/SymbiFlow/symbiflow-arch-defs";
|
||||
hydraPlatforms = [];
|
||||
license = licenses.isc;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -20299,6 +20299,8 @@ in
|
|||
|
||||
sweet = callPackage ../data/themes/sweet { };
|
||||
|
||||
symbiflow-arch-defs = callPackage ../data/misc/symbiflow-arch-defs { };
|
||||
|
||||
mime-types = callPackage ../data/misc/mime-types { };
|
||||
|
||||
shared-mime-info = callPackage ../data/misc/shared-mime-info { };
|
||||
|
|
Loading…
Reference in a new issue