summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/seabios
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-03-03 08:43:46 +0100
committerFelix Singer <felixsinger@posteo.net>2022-03-03 08:48:59 +0100
commitbeff75796080a043ebcb1dbfbb80eb5560bfd39c (patch)
treebd955752178e5843452432cd9464c1ba9df90fba /pkgs/applications/virtualization/seabios
parentea27b2243bfacde2ed3fa05efdcc2bc842995119 (diff)
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>
Diffstat (limited to 'pkgs/applications/virtualization/seabios')
-rw-r--r--pkgs/applications/virtualization/seabios/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/virtualization/seabios/default.nix b/pkgs/applications/virtualization/seabios/default.nix
index af2c4939ad04..c6442b57a421 100644
--- a/pkgs/applications/virtualization/seabios/default.nix
+++ b/pkgs/applications/virtualization/seabios/default.nix
@@ -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" ];
};
}