2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchzip }:
|
2018-06-25 15:05:54 +01:00
|
|
|
|
|
|
|
fetchzip {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://github.com/lief-project/LIEF/releases/download/0.9.0/LIEF-0.9.0-Linux.tar.gz";
|
2018-06-25 15:05:54 +01:00
|
|
|
sha256 = "1c47hwd00bp4mqd4p5b6xjfl89c3wwk9ccyc3a2gk658250g2la6";
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-06-25 15:05:54 +01:00
|
|
|
description = "Library to Instrument Executable Formats";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://lief.quarkslab.com/";
|
2018-06-25 15:05:54 +01:00
|
|
|
license = [ licenses.asl20 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.lassulus ];
|
|
|
|
};
|
|
|
|
}
|