Merge pull request #43776 from volth/xfce413-mousepad

xfce4-13.mousepad: 0.4.0 -> 0.4.1
This commit is contained in:
Jörg Thalheim 2018-07-21 16:41:21 +01:00 committed by GitHub
commit 1399243081
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View file

@ -19,9 +19,7 @@ makeScope newScope (self: with self; {
libxfce4ui = callPackage ./libxfce4ui { };
mousepad = callPackage ./mousepad {
inherit (gnome3) gtksourceview;
};
mousepad = callPackage ./mousepad { };
orage = callPackage ./orage { };

View file

@ -1,12 +1,12 @@
{ mkXfceDerivation, exo, wrapGAppsHook, dbus_glib ? null, gtk3, gtksourceview }:
{ mkXfceDerivation, exo, wrapGAppsHook, dbus-glib, gtk3, gtksourceview3 }:
mkXfceDerivation rec {
category = "apps";
pname = "mousepad";
version = "0.4.0";
version = "0.4.1";
sha256 = "0mm90iq2yd3d0qbgsjyk3yj25k0gm3p34jazl640vixk84v20lyw";
sha256 = "0pr1w9n0qq2raxhy78982i9g17x0ya02q7vdrn0wb2bpk74hlki5";
nativeBuildInputs = [ exo wrapGAppsHook ];
buildInputs = [ dbus_glib gtk3 gtksourceview ];
buildInputs = [ dbus-glib gtk3 gtksourceview3 ];
}