Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 67b5d65ee8f6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 451b23beb2db
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Jul 11, 2017

  1. ghex: init at 3.18.3

    jtojnar committed Jul 11, 2017
    Copy the full SHA
    bf60fbe View commit details
  2. Merge pull request #27297 from jtojnar/fix/ghex

    ghex: init at 3.18.3
    Mic92 authored Jul 11, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    fpletz Franz Pletz
    Copy the full SHA
    451b23b View commit details
2 changes: 1 addition & 1 deletion maintainers/scripts/gnome.sh
Original file line number Diff line number Diff line change
@@ -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
17 changes: 17 additions & 0 deletions pkgs/desktops/gnome-3/3.22/apps/ghex/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
10 changes: 10 additions & 0 deletions pkgs/desktops/gnome-3/3.22/apps/ghex/src.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}
2 changes: 2 additions & 0 deletions pkgs/desktops/gnome-3/3.22/default.nix
Original file line number Diff line number Diff line change
@@ -268,6 +268,8 @@ let

gedit = callPackage ./apps/gedit { };

ghex = callPackage ./apps/ghex { };

glade = callPackage ./apps/glade { };

gnome-boxes = callPackage ./apps/gnome-boxes { };