9abff7a85e
Please, comment on #296.
18 lines
456 B
Nix
18 lines
456 B
Nix
{ v, h, stdenv, fetchXfce, pkgconfig, intltool, libxfce4util, libxfcegui4
|
|
, gtk, gtksourceview, dbus, dbus_glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mousepad-${v}";
|
|
src = fetchXfce.app name h;
|
|
|
|
buildInputs = [
|
|
pkgconfig intltool libxfce4util libxfcegui4
|
|
gtk gtksourceview dbus dbus_glib
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://www.xfce.org/projects/mousepad/;
|
|
description = "A simple text editor for Xfce";
|
|
license = "GPLv2+";
|
|
};
|
|
}
|