Merge pull request #27297 from jtojnar/fix/ghex

ghex: init at 3.18.3
This commit is contained in:
Jörg Thalheim 2017-07-11 18:43:10 +01:00 committed by GitHub
commit 451b23beb2
4 changed files with 30 additions and 1 deletions

View File

@ -6,7 +6,7 @@ GNOME_FTP="ftp.gnome.org/pub/GNOME/sources"
# projects that don't follow the GNOME major versioning, or that we don't want to
# programmatically update
NO_GNOME_MAJOR="gtkhtml gdm"
NO_GNOME_MAJOR="ghex gtkhtml gdm"
usage() {
echo "Usage: $0 gnome_dir <show project>|<update project>|<update-all> [major.minor]" >&2

View File

@ -0,0 +1,17 @@
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, libxml2,
wrapGAppsHook }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [ gnome3.gtk intltool itstool libxml2 ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Ghex;
description = "Hex editor for GNOME desktop environment";
platforms = platforms.linux;
maintainers = gnome3.maintainers;
};
}

View File

@ -0,0 +1,10 @@
# Autogenerated by maintainers/scripts/gnome.sh update
fetchurl: {
name = "ghex-3.18.3";
src = fetchurl {
url = mirror://gnome/sources/ghex/3.18/ghex-3.18.3.tar.xz;
sha256 = "c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3";
};
}

View File

@ -268,6 +268,8 @@ let
gedit = callPackage ./apps/gedit { };
ghex = callPackage ./apps/ghex { };
glade = callPackage ./apps/glade { };
gnome-boxes = callPackage ./apps/gnome-boxes { };