wxhexeditor: 0.22 -> 0.24 (#36832)
This commit is contained in:
parent
07f908f56f
commit
991e5ca486
@ -1,25 +1,35 @@
|
|||||||
{ stdenv, fetchurl, wxGTK, autoconf, automake, libtool, python, gettext, bash }:
|
{ stdenv, fetchFromGitHub, fetchpatch, wxGTK, autoconf, automake, libtool, python, gettext, bash }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "wxHexEditor-${version}";
|
name = "wxHexEditor-${version}";
|
||||||
version = "v0.22";
|
version = "v0.24";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/wxhexeditor/${name}-src.tar.bz2";
|
repo = "wxHexEditor";
|
||||||
sha256 = "15ir038g4lyw1q5bsay974hvj0nkg2yd9kccwxz808cd45fp411w";
|
owner = "EUA";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "08xnhaif8syv1fa0k6lc3jm7yg2k50b02lyds8w0jyzh4xi5crqj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ wxGTK autoconf automake libtool python gettext ];
|
buildInputs = [ wxGTK autoconf automake libtool python gettext ];
|
||||||
|
|
||||||
patchPhase = ''
|
preConfigure = "patchShebangs .";
|
||||||
substituteInPlace Makefile --replace "/usr/local" "$out"
|
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace Makefile --replace "/usr" "$out"
|
||||||
substituteInPlace Makefile --replace "mhash; ./configure" "mhash; ./configure --prefix=$out"
|
substituteInPlace Makefile --replace "mhash; ./configure" "mhash; ./configure --prefix=$out"
|
||||||
substituteInPlace udis86/autogen.sh --replace "/bin/bash" "${bash}/bin/bash"
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# https://github.com/EUA/wxHexEditor/issues/90
|
||||||
|
(fetchpatch {
|
||||||
|
url = https://github.com/EUA/wxHexEditor/commit/d0fa3ddc3e9dc9b05f90b650991ef134f74eed01.patch;
|
||||||
|
sha256 = "1wcb70hrnhq72frj89prcqylpqs74xrfz3kdfdkq84p5qfz9svyj";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make OPTFLAGS="-fopenmp"
|
make OPTFLAGS="-fopenmp"
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -18289,7 +18289,9 @@ with pkgs;
|
|||||||
|
|
||||||
wtftw = callPackage ../applications/window-managers/wtftw {};
|
wtftw = callPackage ../applications/window-managers/wtftw {};
|
||||||
|
|
||||||
wxhexeditor = callPackage ../applications/editors/wxhexeditor { };
|
wxhexeditor = callPackage ../applications/editors/wxhexeditor {
|
||||||
|
wxGTK = wxGTK31;
|
||||||
|
};
|
||||||
|
|
||||||
wxcam = callPackage ../applications/video/wxcam {
|
wxcam = callPackage ../applications/video/wxcam {
|
||||||
inherit (gnome2) libglade;
|
inherit (gnome2) libglade;
|
||||||
|
Loading…
Reference in New Issue
Block a user