Added firmware package

This commit is contained in:
Sebastian 2024-11-07 21:53:00 +01:00
parent 2c53327c28
commit 1f965038fc
9 changed files with 41 additions and 7 deletions

20
MMDVMHost/default.nix Normal file
View file

@ -0,0 +1,20 @@
{ stdenv, fetchFromGitHub, ... }:
stdenv.mkDerivation {
pname = "MMDVMHost";
version = "yolo";
src = fetchFromGitHub {
owner = "g4klx";
repo = "MMDVMHost";
rev = "b02560ccbc02bdb076b77aaef3e70655a714cd36";
sha256 = "sha256-y9mreTIsQuKr1HlUGuSZIdry9f1yFXkbEKKzAaK79v0=";
};
patches = [
./0001-patch-install-path.patch
./0002-fix-missing-include.patch
./0003-fix-null-controller.patch
];
}