linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libx86emu / default.nix
blob8f9669561d62dba0b16b2bf28ac2a8d41c84ed1c
1 { lib, stdenv, fetchFromGitHub, perl }:
3 stdenv.mkDerivation rec {
4   pname = "libx86emu";
5   version = "3.1";
7   src = fetchFromGitHub {
8     owner = "wfeldt";
9     repo = "libx86emu";
10     rev = version;
11     sha256 = "104xqc6nj9rpi7knl3dfqvasf087hlz2n5yndb1iycw35a6j509b";
12   };
14   nativeBuildInputs = [ perl ];
16   postUnpack = "rm $sourceRoot/git2log";
17   patchPhase = ''
18     # VERSION is usually generated using Git
19     echo "${version}" > VERSION
20     substituteInPlace Makefile --replace "/usr" "/"
21   '';
23   buildFlags = [ "shared" ];
24   enableParallelBuilding = true;
26   installFlags = [ "DESTDIR=$(out)" "LIBDIR=/lib" ];
28   meta = with lib; {
29     description = "x86 emulation library";
30     license = licenses.bsd2;
31     homepage = "https://github.com/wfeldt/libx86emu";
32     maintainers = with maintainers; [ bobvanderlinden ];
33     platforms = platforms.linux;
34   };