Skip to content

Commit

Permalink
gnome3.nemiver: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Jan 20, 2017
1 parent 97f5eea commit f11a0e0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/desktops/gnome-3/3.22/devtools/nemiver/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, libxml2, intltool, itstool, gdb,
{ stdenv, fetchurl, fetchpatch, pkgconfig, gnome3, gtk3, libxml2, intltool, itstool, gdb,
boost, sqlite, gconf, libgtop, glibmm, gtkmm, vte, gtksourceview,
gtksourceviewmm, wrapGAppsHook }:

Expand All @@ -10,7 +10,13 @@ stdenv.mkDerivation rec {
buildInputs = [ gtk3 libxml2 intltool itstool gdb boost sqlite gconf libgtop
glibmm gtkmm vte gtksourceview gtksourceviewmm ];

patches = [ ./bool_slot.patch ./safe_ptr.patch ];
patches = [
./bool_slot.patch ./safe_ptr.patch
(fetchpatch {
url = "https://git.gnome.org/browse/nemiver/patch/src/persp/dbgperspective/nmv-dbg-perspective.cc?id=262cf9657f9c2727a816972b348692adcc666008";
sha256 = "03jv6z54b8nzvplplapk4aj206zl1gvnv6iz0mad19g6yvfbw7a7";
})
];

meta = with stdenv.lib; {
homepage = "https://wiki.gnome.org/Apps/Nemiver";
Expand Down

0 comments on commit f11a0e0

Please sign in to comment.