depot/third_party/nixpkgs/pkgs/os-specific/linux/v86d/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

48 lines
1,000 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, kernel
, klibc
}:
let
pversion = "0.1.10";
in stdenv.mkDerivation rec {
pname = "v86d";
version = "${pversion}-${kernel.version}";
src = fetchFromGitHub {
owner = "mjanusz";
repo = "v86d";
rev = "v86d-${pversion}";
hash = "sha256-95LRzVbO/DyddmPwQNNQ290tasCGoQk7FDHlst6LkbA=";
};
patchPhase = ''
patchShebangs configure
'';
configureFlags = [ "--with-klibc" "--with-x86emu" ];
hardeningDisable = [ "stackprotector" ];
makeFlags = [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"DESTDIR=$(out)"
];
configurePhase = ''
./configure $configureFlags
'';
buildInputs = [ klibc ];
meta = with lib; {
description = "Daemon to run x86 code in an emulated environment";
mainProgram = "v86d";
homepage = "https://github.com/mjanusz/v86d";
license = licenses.gpl2;
maintainers = with maintainers; [ codyopel ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}