mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
seabios: 1.15.0 -> 1.16.0
Update SeaBIOS to version 1.16.0. Also, use the git repository as source, since the release was tagged and announced, but no release tarball was published. Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
parent
ea27b2243b
commit
beff757960
@ -1,13 +1,14 @@
|
||||
{ lib, stdenv, fetchurl, acpica-tools, python3 }:
|
||||
{ lib, stdenv, fetchgit, acpica-tools, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "seabios";
|
||||
version = "1.15.0";
|
||||
version = "1.16.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.seabios.org/downloads/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-YownF8mUMmtFMlFXPRBZ4qOhEtSqSIds4nyz8d4ZiPg=";
|
||||
src = fetchgit {
|
||||
url = "https://git.seabios.org/seabios.git";
|
||||
rev = "rel-${version}";
|
||||
sha256 = "0acal1rr7sya86wlhw2mgimabwhjnr0y1pl5zxwb79j8k1w1r8sh";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ python3 ];
|
||||
@ -43,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = "http://www.seabios.org";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = [ maintainers.tstrobel ];
|
||||
maintainers = with maintainers; [ tstrobel ];
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user