mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
062210bdff
A recent upgrade of cargo-vendor changed its output slightly, which broke all cargoSha256 hashes in nixpkgs. See https://github.com/NixOS/nixpkgs/issues/60668 for more information. Since then, a few hashes have been fixed in master by hand, but there were a lot still to do, so I did all of the ones left over with some scripts I wrote. The one hash I wasn’t able to update was habitat's, because it’s currently broken and the build doesn’t get far enough to produce a hash anyway.
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, qt5, git, cmake
|
|
, pkgconfig, makeWrapper }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "panopticon";
|
|
version = "unstable-20171202";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "das-labor";
|
|
repo = pname;
|
|
rev = "33ffec0d6d379d51b38d6ea00d040f54b1356ae4";
|
|
sha256 = "1zv87nqhrzsxx0m891df4vagzssj3kblfv9yp7j96dw0vn9950qa";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ makeWrapper ];
|
|
propagatedBuildInputs = with qt5; [
|
|
qt5.qtbase
|
|
qtdeclarative
|
|
qtsvg
|
|
qtquickcontrols2
|
|
qtgraphicaleffects
|
|
pkgconfig
|
|
git
|
|
];
|
|
|
|
cargoSha256 = "1fsxd7yzb38h1d52yyz7kj1v0riycjydb1b1bn1zkhgwm5sm2kbs";
|
|
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 stdenv.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 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|