udis86: 1.7.2 -> unstable-2014-12-25, patch for python3 builds (#165177)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Armeen Mahdian 2022-03-22 23:53:51 -05:00 committed by GitHub
parent 3c14c74bde
commit e0bd12836b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,31 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, python2 }:
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, python3
}:
stdenv.mkDerivation rec {
pname = "udis86";
version = "1.7.2";
version = "unstable-2014-12-25";
src = fetchFromGitHub {
owner = "vmt";
repo = "udis86";
rev = "v${version}";
sha256 = "0c60zwimim6jrm4saw36s38w5sg5v8n9mr58pkqmjrlf7q9g6am1";
rev = "56ff6c87c11de0ffa725b14339004820556e343d";
hash = "sha256-bmm1rgzZeStQJXEmcT8vnplsnmgN3LJlYs7COmqsDU8=";
};
nativeBuildInputs = [ autoreconfHook python2 ];
patches = [
(fetchpatch {
name = "support-python3-for-building";
url = "https://github.com/vmt/udis86/commit/3c05ce60372cb2eba39d6eb87ac05af8a664e1b1.patch";
hash = "sha256-uF4Cwt7UMkyd0RX6cCMQt9xvkkUNQvTDH/Z/6nHtVT8=";
})
];
nativeBuildInputs = [ autoreconfHook python3 ];
configureFlags = [
"--enable-shared"