gnome3.ghex: 3.18.3 -> 3.18.4
* Meson! * enable extra validation during build * multiout * add license * enable darwin support https://gitlab.gnome.org/GNOME/ghex/blob/master/NEWS
This commit is contained in:
parent
3267c5792f
commit
67fbebd8c6
@ -1,30 +1,86 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, libxml2, gtk3,
|
{ stdenv
|
||||||
wrapGAppsHook }:
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
|
, pkgconfig
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, python3
|
||||||
|
, gnome3
|
||||||
|
, hicolor-icon-theme
|
||||||
|
, desktop-file-utils
|
||||||
|
, appstream-glib
|
||||||
|
, gettext
|
||||||
|
, itstool
|
||||||
|
, libxml2
|
||||||
|
, gtk3
|
||||||
|
, glib
|
||||||
|
, atk
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ghex-${version}";
|
pname = "ghex";
|
||||||
version = "3.18.3";
|
version = "3.18.4";
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/ghex/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/ghex/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3";
|
sha256 = "1h1pjrr9wynclfykizqd78dbi785wjz6b63p31k87kjvzy8w3nf2";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [
|
||||||
|
desktop-file-utils
|
||||||
|
gettext
|
||||||
|
hicolor-icon-theme # for setup-hook
|
||||||
|
itstool
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ gtk3 intltool itstool libxml2 ];
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
atk
|
||||||
|
glib
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
appstream-glib
|
||||||
|
desktop-file-utils
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fixes for darwin. Drop in next release.
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://gitlab.gnome.org/GNOME/ghex/commit/b0af26666cd990d99076c242b2abb3efc6e98671.patch";
|
||||||
|
sha256 = "1zwdkgr2nqrn9q3ydyvrrpn5x55cdi747fhbq6mh6blp9cbrk9b5";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://gitlab.gnome.org/GNOME/ghex/commit/cc8ef9e67b23604c402460010dc0b5dccb85391b.patch";
|
||||||
|
sha256 = "0j2165rfhlbrlzhmcnirqd5m89ljpz0n3nz20sxbwlc8h42zv36s";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x meson_post_install.py
|
||||||
|
patchShebangs meson_post_install.py
|
||||||
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
packageName = "ghex";
|
packageName = "ghex";
|
||||||
attrPath = "gnome3.ghex";
|
attrPath = "gnome3.${pname}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://wiki.gnome.org/Apps/Ghex;
|
homepage = https://wiki.gnome.org/Apps/Ghex;
|
||||||
description = "Hex editor for GNOME desktop environment";
|
description = "Hex editor for GNOME desktop environment";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
maintainers = gnome3.maintainers;
|
maintainers = gnome3.maintainers;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user