Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
787 B
Nix
43 lines
787 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
libnl,
|
|
libpcap,
|
|
pkg-config,
|
|
stdenv,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "nmrpflash";
|
|
version = "0.9.25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jclehner";
|
|
repo = "nmrpflash";
|
|
rev = "v${version}";
|
|
hash = "sha256-5oj+sIrVNAbLmmKHiBSDSVdJFrobK41UfWBmU0WRG3c=";
|
|
};
|
|
|
|
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 ];
|
|
mainProgram = "nmrpflash";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|