Merge pull request #185004 from amjoseph-nixpkgs/pr/atf/prevent-version-mixup
This commit is contained in:
commit
d54c213c55
1 changed files with 2 additions and 3 deletions
|
@ -17,17 +17,16 @@ let
|
||||||
, platformCanUseHDCPBlob ? false # set this to true if the platform is able to use hdcp.bin
|
, platformCanUseHDCPBlob ? false # set this to true if the platform is able to use hdcp.bin
|
||||||
, extraMakeFlags ? []
|
, extraMakeFlags ? []
|
||||||
, extraMeta ? {}
|
, extraMeta ? {}
|
||||||
, version ? "2.7"
|
|
||||||
, ... } @ args:
|
, ... } @ args:
|
||||||
|
|
||||||
# delete hdcp.bin if either: the platform is thought to
|
# delete hdcp.bin if either: the platform is thought to
|
||||||
# not need it or unfreeIncludeHDCPBlob is false
|
# not need it or unfreeIncludeHDCPBlob is false
|
||||||
let deleteHDCPBlobBeforeBuild = !platformCanUseHDCPBlob || !unfreeIncludeHDCPBlob; in
|
let deleteHDCPBlobBeforeBuild = !platformCanUseHDCPBlob || !unfreeIncludeHDCPBlob; in
|
||||||
|
|
||||||
stdenv.mkDerivation ({
|
stdenv.mkDerivation (rec {
|
||||||
|
|
||||||
pname = "arm-trusted-firmware${lib.optionalString (platform != null) "-${platform}"}";
|
pname = "arm-trusted-firmware${lib.optionalString (platform != null) "-${platform}"}";
|
||||||
inherit version;
|
version = "2.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ARM-software";
|
owner = "ARM-software";
|
||||||
|
|
Loading…
Reference in a new issue