Add initial metadata attribute for the additional source
This commit is contained in:
parent
f9378480c0
commit
08076a7b73
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, pkgs, firmwareLinuxNonfree, ...}:
|
{stdenv, lib, pkgs, firmwareLinuxNonfree, ...}:
|
||||||
let
|
let
|
||||||
repos = (pkgs.callPackage ../repos.nix {});
|
repos = (pkgs.callPackage ../repos.nix {});
|
||||||
ath10k = ./ath10k;
|
ath10k = ./ath10k;
|
||||||
|
@ -11,7 +11,6 @@ firmwareLinuxNonfree.overrideAttrs (old: rec {
|
||||||
ath10k
|
ath10k
|
||||||
];
|
];
|
||||||
sourceRoot = firmwareLinuxNonfree.src;
|
sourceRoot = firmwareLinuxNonfree.src;
|
||||||
priority = 1;
|
|
||||||
|
|
||||||
dontMakeSourcesWritable = true;
|
dontMakeSourcesWritable = true;
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
@ -25,4 +24,10 @@ firmwareLinuxNonfree.overrideAttrs (old: rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
outputHash = "1nc56qii96dfvxnv3ad3lxz2rzyqcbldk0h9rbm3l2pgamkvj8dw";
|
outputHash = "1nc56qii96dfvxnv3ad3lxz2rzyqcbldk0h9rbm3l2pgamkvj8dw";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Standard binary firmware collection, adjusted with the Surface Go WiFi firmware";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
priority = 5;
|
||||||
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue