Skip to content

Commit

Permalink
qemu-riscv: Init at 2.11.50pre57991_713f2c1164.
Browse files Browse the repository at this point in the history
Fixes #35087
  • Loading branch information
shlevy committed Feb 18, 2018
1 parent ecf4825 commit 890c0b9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pkgs/applications/virtualization/qemu/riscv.nix
@@ -0,0 +1,16 @@
{ qemu, fetchFromGitHub, lib }: let
src = fetchFromGitHub {
owner = "riscv";
repo = "riscv-qemu";
rev = "713f2c116481d568702759bcb1b7fed835a2d575";
sha256 = "0y4zrgidpc19pxwqqxcmj0ld50fdkf8b8c87xfcn88zrk8798qz4";
fetchSubmodules = true;
};
version = "2.11.50";
date = "20180203";
revCount = "57991";
shortRev = "713f2c1164";
in lib.overrideDerivation qemu (orig: {
name = "${(builtins.parseDrvName qemu.name).name}-${version}pre${revCount}_${shortRev}";
inherit src;
})
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -16901,6 +16901,8 @@ with pkgs;
inherit (darwin.stubs) rez setfile;
};

qemu-riscv = callPackage ../applications/virtualization/qemu/riscv.nix {};

qgis = callPackage ../applications/gis/qgis {};

qgroundcontrol = libsForQt5.callPackage ../applications/science/robotics/qgroundcontrol { };
Expand Down

0 comments on commit 890c0b9

Please sign in to comment.