mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
commit
191c42d6ca
2 changed files with 16 additions and 0 deletions
14
pkgs/development/libraries/lief/default.nix
Normal file
14
pkgs/development/libraries/lief/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ stdenv, fetchzip }:
|
||||
|
||||
fetchzip {
|
||||
url = https://github.com/lief-project/LIEF/releases/download/0.9.0/LIEF-0.9.0-Linux.tar.gz;
|
||||
sha256 = "1c47hwd00bp4mqd4p5b6xjfl89c3wwk9ccyc3a2gk658250g2la6";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Library to Instrument Executable Formats";
|
||||
homepage = https://lief.quarkslab.com/;
|
||||
license = [ licenses.asl20 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.lassulus ];
|
||||
};
|
||||
}
|
|
@ -1353,6 +1353,8 @@ with pkgs;
|
|||
|
||||
languagetool = callPackage ../tools/text/languagetool { };
|
||||
|
||||
lief = callPackage ../development/libraries/lief {};
|
||||
|
||||
loadwatch = callPackage ../tools/system/loadwatch { };
|
||||
|
||||
loccount = callPackage ../development/tools/misc/loccount { };
|
||||
|
|
Loading…
Reference in a new issue