3
0
Fork 0
forked from mirrors/nixpkgs

arm-trusted-firmware: correctly handle version overrides

This commit is contained in:
Patrick Hilhorst 2018-11-05 00:44:40 +01:00
parent f54f5fdaaa
commit 0e381e084e
No known key found for this signature in database
GPG key ID: 589BB0A8DAFEF2B2

View file

@ -6,11 +6,12 @@ let
, platform
, extraMakeFlags ? []
, extraMeta ? {}
, version ? "1.5"
, ... } @ args:
stdenv.mkDerivation (rec {
name = "arm-trusted-firmware-${platform}-${version}";
version = "1.5";
inherit version;
src = fetchFromGitHub {
owner = "ARM-software";