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: 09cc9dea29be
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0390f5939d9c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 9, 2019

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    0390f59 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/desktops/gnome-3/core/gnome-font-viewer/default.nix
4 changes: 2 additions & 2 deletions pkgs/desktops/gnome-3/core/gnome-font-viewer/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, meson, ninja, gettext, fetchurl
, pkgconfig, gtk3, glib, libxml2, gnome-desktop, adwaita-icon-theme
, wrapGAppsHook, gnome3 }:
, wrapGAppsHook, gnome3, harfbuzz }:

stdenv.mkDerivation rec {
name = "gnome-font-viewer-${version}";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
doCheck = true;

nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook libxml2 ];
buildInputs = [ gtk3 glib gnome-desktop adwaita-icon-theme ];
buildInputs = [ gtk3 glib gnome-desktop adwaita-icon-theme harfbuzz ];

# Do not run meson-postinstall.sh
preConfigure = "sed -i '2,$ d' meson-postinstall.sh";