linux_6_1: 6.1.117 -> 6.1.118
[NixPkgs.git] / pkgs / os-specific / linux / v86d / default.nix
blob12e9b57d001cb9e799368065719fd9fd05b0f24d
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , kernel
5 , klibc
6 }:
8 let
9   pversion = "0.1.10";
10 in stdenv.mkDerivation rec {
11   pname = "v86d";
12   version = "${pversion}-${kernel.version}";
14   src = fetchFromGitHub {
15     owner = "mjanusz";
16     repo = "v86d";
17     rev = "v86d-${pversion}";
18     hash = "sha256-95LRzVbO/DyddmPwQNNQ290tasCGoQk7FDHlst6LkbA=";
19   };
21   patchPhase = ''
22     patchShebangs configure
23   '';
25   configureFlags = [ "--with-klibc" "--with-x86emu" ];
27   hardeningDisable = [ "stackprotector" ];
29   makeFlags = [
30     "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
31     "DESTDIR=$(out)"
32   ];
34   configurePhase = ''
35     ./configure $configureFlags
36   '';
38   buildInputs = [ klibc ];
40   meta = with lib; {
41     description = "Daemon to run x86 code in an emulated environment";
42     mainProgram = "v86d";
43     homepage = "https://github.com/mjanusz/v86d";
44     license = licenses.gpl2Only;
45     maintainers = with maintainers; [ codyopel ];
46     platforms = [ "i686-linux" "x86_64-linux" ];
47   };