9833d56c24
Done with the help of https://github.com/Mindavi/nixpkgs-mark-broken Tool is still WIP but this is one of the first results. I manually audited the results and removed some results that were not valid. Note that some of these packages maybe should have more constrained platforms set instead of broken set, but I think not being perfectly correct is better than just keep trying to build all these things and never succeeding. Some observations: - Some darwin builds require XCode tools - aarch64-linux builds sometimes suffer from using gcc9 - gcc9 is getting older and misses some new libraries/features - Sometimes tools try to do system detection or expect some explicit settings for platforms that are not x86_64-linux
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ stdenv, lib, fetchFromGitHub, rustPlatform, qt5, git, cmake
|
|
, pkg-config, makeWrapper }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "panopticon";
|
|
version = "unstable-20171202";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "das-labor";
|
|
repo = pname;
|
|
rev = "33ffec0d6d379d51b38d6ea00d040f54b1356ae4";
|
|
sha256 = "1zv87nqhrzsxx0m891df4vagzssj3kblfv9yp7j96dw0vn9950qa";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
|
|
propagatedBuildInputs = with qt5; [
|
|
qt5.qtbase
|
|
qtdeclarative
|
|
qtsvg
|
|
qtquickcontrols2
|
|
qtgraphicaleffects
|
|
git
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
cargoSha256 = "0vhcb3kw1zgchx3nrk8lyrz8p5071y99vsysxvi71klv7dcvn0am";
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/${pname} $out/bin
|
|
cp -R qml $out/share/${pname}
|
|
mv $out/bin/${pname} $out/share/${pname}
|
|
chmod +x $out/share/${pname}
|
|
makeWrapper $out/share/${pname}/${pname} $out/bin/${pname}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A libre cross-platform disassembler";
|
|
longDescription = ''
|
|
Panopticon is a cross platform disassembler for reverse
|
|
engineering written in Rust. It can disassemble AMD64,
|
|
x86, AVR and MOS 6502 instruction sets and open ELF files.
|
|
Panopticon comes with Qt GUI for browsing and annotating
|
|
control flow graphs.
|
|
'';
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = with maintainers; [ leenaars ];
|
|
# never built on aarch64-linux since first introduction in nixpkgs
|
|
broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64);
|
|
};
|
|
}
|