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
51
pkgs/development/tools/analysis/panopticon/default.nix
Normal file
51
pkgs/development/tools/analysis/panopticon/default.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{ 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; {
|
||||
broken = stdenv.isDarwin;
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue