mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
uboot: 2020.10 -> 2021.01 (#109236)
This commit is contained in:
parent
0cd5058afd
commit
5ff4a67412
1 changed files with 6 additions and 3 deletions
|
@ -18,10 +18,10 @@
|
|||
}:
|
||||
|
||||
let
|
||||
defaultVersion = "2020.10";
|
||||
defaultVersion = "2021.01";
|
||||
defaultSrc = fetchurl {
|
||||
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${defaultVersion}.tar.bz2";
|
||||
sha256 = "08m6f1bh4pdcqbxf983qdb66ccd5vak5cbzc114yf3jwq2yinj0d";
|
||||
sha256 = "0m04glv9kn3bhs62sn675w60wkrl4m3a4hnbnnw67s3l198y21xl";
|
||||
};
|
||||
buildUBoot = {
|
||||
version ? null
|
||||
|
@ -55,7 +55,10 @@ let
|
|||
dtc
|
||||
flex
|
||||
openssl
|
||||
(buildPackages.python3.withPackages (p: [ p.libfdt ]))
|
||||
(buildPackages.python3.withPackages (p: [
|
||||
p.libfdt
|
||||
p.setuptools # for pkg_resources
|
||||
]))
|
||||
swig
|
||||
];
|
||||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||
|
|
Loading…
Reference in a new issue