mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
rutabaga_gfx: init at 0.1.2
(cherry picked from commit a8c49d6e2801627f97e0b4ceda1ccd4bf4ec8698)
This commit is contained in:
parent
e31df9c9d7
commit
2825760665
41
pkgs/development/libraries/rutabaga_gfx/default.nix
Normal file
41
pkgs/development/libraries/rutabaga_gfx/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib, stdenv, fetchgit, cargo, pkg-config, rustPlatform
|
||||
, aemu, gfxstream, libcap, libdrm, minijail
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "rutabaga_gfx";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://chromium.googlesource.com/crosvm/crosvm";
|
||||
rev = "v${finalAttrs.version}-rutabaga-release";
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-0RJDKzeU7U6hc6CLKks8QcRs3fxN+/LYUbB0t6W790M=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cargo pkg-config rustPlatform.cargoSetupHook ];
|
||||
buildInputs = [ aemu gfxstream ]
|
||||
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform libdrm) libdrm;
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit (finalAttrs) src;
|
||||
hash = "sha256-wuF3Isrp+u5J8jPQoPsIOWYGNKLSNa2pLfvladAWkLs=";
|
||||
};
|
||||
|
||||
# make install always rebuilds
|
||||
dontBuild = true;
|
||||
|
||||
makeFlags = [ "prefix=$(out)" ];
|
||||
|
||||
preInstall = ''
|
||||
cd rutabaga_gfx/ffi
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://crosvm.dev/book/appendix/rutabaga_gfx.html";
|
||||
description = "cross-platform abstraction for GPU and display virtualization";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ qyliss ];
|
||||
platforms = platforms.darwin ++ platforms.linux;
|
||||
};
|
||||
})
|
@ -24852,6 +24852,8 @@ with pkgs;
|
||||
|
||||
rubberband = callPackage ../development/libraries/rubberband { };
|
||||
|
||||
rutabaga_gfx = callPackage ../development/libraries/rutabaga_gfx { };
|
||||
|
||||
rure = callPackage ../development/libraries/rure { };
|
||||
|
||||
rustc-demangle = callPackage ../development/libraries/rustc-demangle { };
|
||||
|
Loading…
Reference in New Issue
Block a user