mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
prjxray-db: init at 0.0-0232-g303a61d
This commit is contained in:
parent
d81e4d9f66
commit
7d9c736824
43
pkgs/data/misc/prjxray-db/default.nix
Normal file
43
pkgs/data/misc/prjxray-db/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "prjxray-db";
|
||||
version = "0.0-0232-g303a61d";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SymbiFlow";
|
||||
repo = "prjxray-db";
|
||||
rev = "303a61d8bc552f7a533b91b17448c59e908aa391";
|
||||
sha256 = "0r75xig16dbgh3nfygggir0a160x52y766h7hd9xcib9m88jixb2";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
DBDIR="$out/share/symbiflow/prjxray-db/"
|
||||
DB_CONFIG="$out/bin/prjxray-config"
|
||||
|
||||
mkdir -p $DBDIR $out/bin
|
||||
|
||||
for device in artix7 kintex7 zynq7; do
|
||||
cp -r $src/$device $DBDIR
|
||||
done
|
||||
|
||||
echo -e "#!/bin/sh\n\necho $DBDIR" > $DB_CONFIG
|
||||
chmod +x $DB_CONFIG
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Project X-Ray - Xilinx Series 7 Bitstream Documentation";
|
||||
homepage = "https://github.com/SymbiFlow/prjxray-db";
|
||||
license = licenses.cc0;
|
||||
maintainers = with maintainers; [ mcaju ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -20254,6 +20254,8 @@ in
|
|||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
prjxray-db = callPackage ../data/misc/prjxray-db { };
|
||||
|
||||
profont = callPackage ../data/fonts/profont
|
||||
{ inherit (buildPackages.xorg) mkfontscale; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue