nixpkgs/pkgs/development/libraries/libx86emu/default.nix

34 lines
787 B
Nix
Raw Normal View History

2015-04-20 11:55:04 +00:00
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "libx86emu-${version}";
version = "1.5";
src = fetchurl {
url = "https://github.com/wfeldt/libx86emu/archive/${version}.tar.gz";
sha256 = "1im6w6m0bl6ajynx4hc028lad8v10whv4y7w9zxndzh3j4mi3aa8";
};
buildInputs = [ perl ];
patchPhase = ''
# VERSION is usually generated using Git
echo "${version}" > VERSION
sed -i 's|/usr/|/|g' Makefile
'';
2017-04-08 02:59:41 +00:00
makeFlags = [ "shared" ];
2015-04-20 11:55:04 +00:00
installPhase = ''
make install DESTDIR=$out/ LIBDIR=lib
'';
meta = with stdenv.lib; {
description = "x86 emulation library";
license = licenses.bsd2;
homepage = https://github.com/wfeldt/libx86emu;
maintainers = with maintainers; [ bobvanderlinden ];
2017-04-08 02:59:41 +00:00
platforms = platforms.linux;
2015-04-20 11:55:04 +00:00
};
}