nmrpflash: init at 0.9.16

This commit is contained in:
dadada 2022-04-03 13:42:04 +02:00
parent cf74f5d089
commit 9d792ec3af
No known key found for this signature in database
GPG Key ID: EEB8D1CE62C4DFEA
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ fetchFromGitHub
, gcc
, lib
, libnl
, libpcap
, pkg-config
, stdenv
, writeShellScriptBin
}:
stdenv.mkDerivation rec {
pname = "nmrpflash";
version = "0.9.16";
src = fetchFromGitHub {
owner = "jclehner";
repo = "nmrpflash";
rev = "v${version}";
sha256 = "sha256-0nqdbXf1syUe7o5hoNIKLruKxkNaUsGolfZzoQY15j4==";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libnl libpcap ];
PREFIX = "${placeholder "out"}";
STANDALONE_VERSION = "${version}";
preInstall = ''
mkdir -p $out/bin
'';
meta = with lib; {
description = "Netgear Unbrick Utility";
homepage = "https://github.com/jclehner/nmrpflash";
license = licenses.gpl3;
maintainers = with maintainers; [ dadada ];
platforms = platforms.unix;
};
}

View File

@ -15920,6 +15920,8 @@ with pkgs;
jre_headless = jre8_headless;
};
nmrpflash = callPackage ../development/embedded/nmrpflash { };
nwjs = callPackage ../development/tools/nwjs { };
nwjs-sdk = callPackage ../development/tools/nwjs {