Merge pull request #297510 from dadada/refactor-nmrpflash

nmrpflash: refactor
This commit is contained in:
Weijia Wang 2024-03-24 23:35:22 +01:00 committed by GitHub
commit 8da98e9d45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 5 deletions

View File

@ -10,10 +10,10 @@ stdenv.mkDerivation rec {
version = "0.9.22";
src = fetchFromGitHub {
owner = "jclehner";
repo = "nmrpflash";
rev = "v${version}";
sha256 = "sha256-gr/7tZYnuXFvfIUh2MmtgSbFoELTomQ4h05y/WFDhjo=";
owner = "jclehner";
repo = "nmrpflash";
rev = "v${version}";
hash = "sha256-gr/7tZYnuXFvfIUh2MmtgSbFoELTomQ4h05y/WFDhjo=";
};
nativeBuildInputs = [ pkg-config ];
@ -29,10 +29,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Netgear Unbrick Utility";
mainProgram = "nmrpflash";
homepage = "https://github.com/jclehner/nmrpflash";
license = licenses.gpl3;
maintainers = with maintainers; [ dadada ];
mainProgram = "nmrpflash";
platforms = platforms.unix;
};
}